Reputation: 217
I want to make a simple file browser app for iPhone. (Like iFile in Cydia) It's not a just view Documents folder, it can see all directories in the iPhone/iPod Touch File System. Like a Finder on Mac/Explorer on the Windows.
Who can help me?
P.S. I'll publish to Cydia Store, not App Store.
Upvotes: 0
Views: 1939
Reputation: 791
You're going to need the iPhone SDK up and running and you're going to want to go over the NSFileManager documentation.
Upvotes: 2
Reputation: 125017
iOS apps operate in their own little sandboxes -- they can't see into other apps' directories. So unless you're writing an app for a jailbroken device, you're out of luck.
Upvotes: 0
Reputation: 90117
You can't do this if you want to publish to the app store. You are not allowed to access files outside of your own sandbox.
Upvotes: 2