Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

is there a way to list (NSLog) file names under a folder (named downloads that is located under the documents directory of my app) with the following conditions met:

1) exclude hidden files (such as .DS_Store files)

2) do not search in sub-folders (i do not want the enumerator to be recursive).

thank you so much in advance.

EDIT:

3) do not list sub-folders' names.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use NSFileManager's enumeration with options and pass the appropriate flags, which are NSDirectoryEnumerationSkipsHiddenFiles and NSDirectoryEnumerationSkipsSubdirectoryDescendants

This is from the docs: enter image description here

share|improve this answer
using NSDirectoryEnumerationSkipsSubdirectoryDescendants option, still returns a sub-folder name, how to exclude it ? – JAHelia Jan 27 at 14:24
You can check if a certain item is a directory using "fileExistsAtPath:isDirectory:" – Stavash Jan 27 at 15:29
@JAHelia Your original question does not state that you don't want directories listed. You state that you don't want a recursive listing. You should update your question with this additional requirement. – rmaddy Jan 27 at 19:01

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.