Hello guys,
As you knew, a iphone app has 4 directories: Application folder, Document, Library, tmp.
When app is installed in the first time, I want to:
- Create a list of directories in Document folder
- Import a list of images to each that directories.
I searched and found the way to create directory in Document folder by code.
[[NSFileManager defaultManager] createDirectoryAtPath:newDirectoryPath attributes: nil];
But following that way, user must create folder and import images by themself after installing app. I want my app do that.
Anybody know how to do it, please help me.
Thanks in advance! Tien