vote up 3 vote down star
4

I'm reading Erica Sadun's iPhone Developer's Cookbook, and ran into a question.

She says in the book that the way to find the user's Documents directory is with the code:

[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];

but that seems slightly brittle, and dissimiliar to the normal Mac way of doing it, which would be:

NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);

Are there any particular reasons to use one over the other?

flag

2 Answers

vote up 10 vote down check

NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) is the suggested method.

link|flag
Cool, that's what I'll use, but why it and not the other way? – bwinton Nov 7 '08 at 17:42
You can use the other way, but if an upgrade to the OS changes the default structure, this answer is guaranteed to still work with the new layout while the first way will either fail or start re-creating legacy directories. – Jason Coco Nov 7 '08 at 18:12
Why do you use NSLibraryDirectory rather than NSDocumentDirectory? – Elliot Jun 17 at 9:49
Oops, copied the wrong bit of code. Fixed, thanks! – Ben Gottlieb Jun 17 at 14:42
vote up 1 vote down

Here is the code that I use in my framework.

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

Your Answer

Get an OpenID
or

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