Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vista and ProgramData

What is the right place to store program data files which are the same for every user but have to be writeable for the program? What would be the equivalent location on MS Windows XP? I have read that C:\ProgramData is not writeable after installation by normal users. Is that true? How can I retrieve that directory programmatically using the Platform SDK?

like image 300
frast Avatar asked Sep 25 '08 06:09

frast


1 Answers

SHGetFolderPath() with CSIDL of CSIDL_COMMON_APPDATA.

Read more at http://msdn.microsoft.com/en-us/library/bb762181(VS.85).aspx

If you need the path in a batch file, you can also use the %ALLUSERSPROFILE% environment variable.

like image 120
Franci Penov Avatar answered Sep 21 '22 07:09

Franci Penov