Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone have some sample code demonstrating how to make a "file browser" view? I'd like to be able to navigate through directories and drill-down the sub-directories and see files located within the various folders. I want the user to be able to create new directories/files and even select an existing file. Is there sample code out there already available to do this?

share|improve this question

2 Answers

up vote 2 down vote accepted

I don't know about sample code, but this wouldn't be too complicated to achieve using NSFileManager and a UITableView.

You can obtain arrays of directory contents using the subpathsOfDirectoryAtPath:error and associated methods of a file manager. These arrays in turn can populate a UITableView. It would be fairly easy to put together a navigation controller that could display a series of table views showing a file hiearchy.

Bear in mind, however, that you'll only be able to access the directories inside your application sandbox, unless you're running on a jailbroken device.

share|improve this answer

The iOS programming guide says that

You should never present users with the list of files in this directory and ask them to decide what to do with those files. Instead, sort through the files programmatically and add files without prompting.

This is assuming you are trying to implement file browse feature for your documents directory.

share|improve this answer
Do you know why Apple add this restriction? By the way, I can't find the related content in iOS Programming guide. – Bob Cromwell Apr 2 at 7:42
@BobCromwell see the File sharing Support part at the following link: developer.apple.com/library/ios/#documentation/miscellaneous/… – Vin Apr 2 at 7:52
Thanks. However I think the word 'never' is a bit misleading. Apple just gave an advice for better user experience. – Bob Cromwell Apr 2 at 9:22
I think it is deliberately intended to avoid giving the user, an illusion of the existence of a file system. – Vin Apr 2 at 10:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.