up vote 51 down vote favorite
13
share [g+] share [fb]

I want to quickly check to see if a file exists in my iPhone app's Documents directory (or any path for that matter). I can enumerate through the directory's files, or I can try to open a specific file. What's the fastest way? I just need to know if the file is there or if it does not exist.

link|improve this question

68% accept rate
feedback

1 Answer

up vote 107 down vote accepted
BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:somePath];
link|improve this answer
6  
love short answers – Elijah Saounkine Sep 21 '10 at 13:21
feedback

Your Answer

 
or
required, but never shown

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