Hi all,
I have some audio files saved under the Documents directory. I just want to get those file names so that I can display them in a tableview. Right now I'm using
NSArray* files = [[NSFileManager defaultManager]
contentsOfDirectoryAtPath:DOCUMENTS_FOLDER error:&err];
How can I extract just the file names into an array using that returned NSArray* files Object?