How can I load all files from a specific folder with iOS ? (They are images)
thanks
Printable View
How can I load all files from a specific folder with iOS ? (They are images)
thanks
I use Documents To Go and QuickOffice. They are the easiest for what I do. There is also DropBox that is Painless. There are lots of just "filing
' apps out there also. If you JailBreak you can look at iFiles.
first: Find the full path
then: List all files use NSFileManager
NSArray *items = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:folderPath error:&err];
Thank you for the information.