vote up 0 vote down star

I am posting this question because I had a complete answer for this written out for another post, when I found it did not apply to the original but I thought was too useful to waste. Thus I have also made this a community wiki, so that others may flesh out question and answer(s). If you find the answer useful, please vote up the question - being a community wiki I should not get points for this voting but it will help others find it

How can I get a path into which file writes are allowed on the iPhone? You can (misleadingly) write anywhere you like on the Simulator, but on the iPhone you are only allowed to write into specific locations.

flag

1 Answer

vote up 1 vote down

There are two kinds of writable paths to consider - one is Documents, where you store things you want to keep:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];

Then there is a cache directory, where you can put images that you don't care exist for the long term or not (the phone may delete them at some point):

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *cachePath = [paths objectAtIndex:0];
BOOL isDir = NO;
NSError *error;
if (! [[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:&isDir] && isDir == NO) {
    [[NSFileManager defaultManager] createDirectoryAtPath:cachePath withIntermediateDirectories:NO attributes:nil error:&error];
}

Note that you have to actually create the Caches directory there, so when writing you have to check and create every time! Kind of a pain, but that's how it is.

Then when you have a writable path, you just append a file name onto it like so:

NSString *filePath =  [documentsDirectory stringByAppendingPathComponent:@"SomeDirectory/SomeFile.txt"];

or

NSString *filePath =  [cachePath stringByAppendingPathComponent:@"SomeTmpFile.png"];

Use that path for reading or writing.

Note that you can make subdirectories in either of those writable paths, which one of the example string above is using (assuming one has been created).

If you are trying to write an image into the photo library, you cannot use file system calls to do this - instead, you have to have a UIImage in memory, and use the UIImageWriteToSavedPhotosAlbum() function call defined by UIKit. You have no control over the destination format or compression levels, and cannot attach any EXIF in this way.

link|flag
Don't build the path to Caches yourself. Use the same NSSearchPathForDirectoriesInDomain() function, but instead of using NSDocumentDirectory, use NSCachesDirectory. – Dave DeLong Oct 14 at 15:43
Edited answer to use NSCachesDirectory – Dave DeLong Oct 14 at 15:46
Thank you, good to know. – Kendall Helmstetter Gelner Oct 14 at 16:12
idevkit.com/iphonedev/2009/… there is a section in there on how to get the documents directory of your app, xcodeproj is included. It is based on saving an nsmutablearray and loading it again. It is essentially the same method for gettig the directory for saving other objects to. – Sj Oct 14 at 16:56
That's nice but is tangental to the question, which is simply how to get an area you can write to. Plus the idea of StackOverflow is that this should act as the canonical repository of information. – Kendall Helmstetter Gelner Oct 14 at 17:34

Your Answer

Get an OpenID
or

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