Is there a way to get the file names in the document folder of the iPhone application? How do you do this?
NSFileManager *manager = [NSFileManager defaultManager]; NSArray *fileList = [manager directoryContentsAtPath:documentsDirectory]; for (NSString *s in fileList){ NSLog(s); }