Cocoa equivalent of .NET's Environment.SpecialFolder for saving preferences/settings? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:46:38Z http://stackoverflow.com/feeds/question/359590 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/359590/cocoa-equivalent-of-nets-environment-specialfolder-for-saving-preferences-setti 4 Cocoa equivalent of .NET's Environment.SpecialFolder for saving preferences/settings? Stewart Johnson 2008-12-11T14:45:46Z 2008-12-13T05:51:57Z <p>How do I get the reference to a folder for storing per-user-per-application settings when writing an Objective-C Cocoa app in Xcode?</p> <p>In .NET I would use the <code>Environment.SpecialFolder</code> enumeration:</p> <pre><code>Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); </code></pre> <p>What's the Cocoa equivalent?</p> http://stackoverflow.com/questions/359590/cocoa-equivalent-of-nets-environment-specialfolder-for-saving-preferences-setti/359819#359819 10 Answer by Marc Charbonneau for Cocoa equivalent of .NET's Environment.SpecialFolder for saving preferences/settings? Marc Charbonneau 2008-12-11T15:55:51Z 2008-12-11T15:55:51Z <p>In Mac OSX application preferences are stored automatically through NSUserDefaults, which saves them to a .plist file <code>~/Library/Preferences/</code>. You shouldn't need to do anything with this file, NSUserDefaults will handle everything for you.</p> <p>If you have a data file in a non-document based application (such as AddressBook.app), you should store it in <code>~/Library/Application Support/Your App Name/</code>. There's no built-in method to find or create this folder, you'll need to do it yourself. Here's an example from one of my own applications, if you look at some of the Xcode project templates, you'll see a similar method.</p> <pre><code>+ (NSString *)applicationSupportFolder; { // Find this application's Application Support Folder, creating it if // needed. NSString *appName, *supportPath = nil; NSArray *paths = NSSearchPathForDirectoriesInDomains( NSApplicationSupportDirectory, NSUserDomainMask, YES ); if ( [paths count] &gt; 0) { appName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleExecutable"]; supportPath = [[paths objectAtIndex:0] stringByAppendingPathComponent:appName]; if ( ![[NSFileManager defaultManager] fileExistsAtPath:supportPath] ) if ( ![[NSFileManager defaultManager] createDirectoryAtPath:supportPath attributes:nil] ) supportPath = nil; } return supportPath; } </code></pre> <p>Keep in mind that if your app is popular you'll probably get requests to be able to have multiple library files for different users sharing the same account. If you want to support this, the convention is to prompt for a path to use when the application is started holding down the alt/option key.</p> http://stackoverflow.com/questions/359590/cocoa-equivalent-of-nets-environment-specialfolder-for-saving-preferences-setti/360299#360299 0 Answer by Mike Abdullah for Cocoa equivalent of .NET's Environment.SpecialFolder for saving preferences/settings? Mike Abdullah 2008-12-11T18:03:38Z 2008-12-11T18:03:38Z <p>For most stuff, you should just use the NSUserDefaults API which takes care of persisting settings on disk for you.</p>