Hi all,
does anybody know how to count files of a directory? I couldn't find something similar in the class reference of NSFileManager.
Thanks in advance.
Sean
Hi all,
does anybody know how to count files of a directory? I couldn't find something similar in the class reference of NSFileManager.
Thanks in advance.
Sean
contentsOfDirectoryAtPath:error:
returns an NSArray
. Just send count
to the array.