vote up 2 vote down star
1

There are several possible ways of getting the path to the application data directory:

  • using the %APPDATA% environment variable
  • calling SHGetFolderPath with CSIDL_APPDATA

What is the best way to get the path from within an program? Are there any gotchas when I use the environment variable?

Which method is safest across XP, Vista and upcoming versions?

flag

3 Answers

vote up 8 vote down check

I would suggest that calling SHGetFolderPath() is the most appropriate, and portable method; the alternatives, such as reading an environment variable, or (worse) trying to extract it from the registry are likely to trip you up in the future.

Raymond Chen has an article explaining why pulling such paths from the registry is a bad idea.

link|flag
I read the article, and I previously I did exactly what the article told me not to do:) – Torsten Marek Jan 31 at 16:54
vote up 1 vote down

If you're programming in .NET you can use this:

string appDataPath = Environment.SpecialFolder.ApplicationData;
link|flag
vote up 0 vote down

One important difference in Python: in case of unicode file paths ctypes.windll.shell32.SHGetFolderPathW returns a unicode string, whereasos.environ['APPDATA'] returns a byte string.

link|flag

Your Answer

Get an OpenID
or

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