vote up 12 vote down star

Hi there,

I'm building an application that is targeting Windows, Mac and Linux soon. I was wondering where should I keep application data such as settings, etc.

Application's installation folder is the easiest choice, but I think that might be a problem with new Vista security model. Besides, users might want different settings.

Is it C:\Documents and Settings\username\MyApp good for both Vista and XP? Is it /home/username/.MyApp good for Linux and Macs?

Any ideas and/or links to best practices much appreciated.

Thanks!

Juan

flag

Kristopher's answer is technically correct but fwiw, the ~ folder on a Mac is /Users not /Home – username Sep 11 '08 at 16:22

9 Answers

vote up 11 vote down check

Each platform has its own API for finding the user's home folder, or documents folder, or preferences folder.

  • Windows: SHGetFolderPath() or SHGetKnownFolderPath()
  • Mac OS X and iPhone OS: NSSearchPathForDirectoriesInDomains()
  • Unix: $HOME environment variable

Don't hardcode specific paths or just tack a prefix and suffix on the user's name. Also, try to follow whatever conventions there are for the platform for naming the files.

link|flag
vote up 2 vote down

Hi,

I'm not :)

I'm using USERPROFILE in Windows and HOME in Mac/Linux. But even so, I need to know that those are the right places.

Thanks!

link|flag
vote up 1 vote down

In windows you need to go another level deep than just the user profile. Use the Application Data folder.

link|flag
vote up 1 vote down

Never, ever store user data in the application folder. It's just a bad idea.

Most operating systems have a $HOME (or %HOME%) environment variable. That would be the first place to look.

If you want to cleanly support multiple operating systems, though, you're going to have to have some OS-specific code for each that figures out exactly where things need to go. (~/Library for Mac OS, ~/.config for GNOME-based systems, %HOME%/Application Data for Windows, etc.).

link|flag
vote up 1 vote down

On Windows I use APPDATA,and on Linux I use HOME.

link|flag
vote up 5 vote down

In regards to best practices, Jeff posted an article on polluting user space that you might find useful: Don't Pollute User Space

link|flag
Very nice link, thanks. Fun thing is that I'm subscribed to Jeff's blog, I just didn't remember that post. Thanks again! – Zárate Sep 11 '08 at 17:11
vote up 3 vote down

As a general point, I'd recommend abstracting the implementation of your settings into a 'Settings Provider' and provide different providers for each platform. That way, you can implement the storage of the settings in the manner that best suits the target platforms (for example, a file on Linux or the Windows Registry).

Don't simply adopt the 'lowest common denominator'. Where you have content that must be explicity stored in files, have your settings provider expose the platform-specific location for those files.

link|flag
vote up 2 vote down

For Linux/BSD/Solaris: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html

link|flag
vote up 1 vote down

What language are you planning to use? Java, for example, has a dedicated Preference API.

link|flag

Your Answer

Get an OpenID
or

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