Could somebody point me to a document which lists all the standard file locations in windows and what one should and shouldn't use them for. Something like
User Application Data -> %USERDIR%/AppData/Local/%VENDOR%/%APPLICATION%
and so forth.
|
|
Could somebody point me to a document which lists all the standard file locations in windows and what one should and shouldn't use them for. Something like
and so forth.
|
|||
|
|
|
|
Big Disclaimer
Now that the big disclaimer is out of the way, where's the list? Wikipedia has it. Take some of the "first-appeared-in" with a grain of salt; I'm 90% sure I've seen some of these appear earlier than is claimed. I have shamelessly cut-and-pasted-and-reformatted their content below:
|
|||
|
|
|
|
Never use the hardcoded values. Not only are their APIs to retrieve them, but some also have environment variables. For instance, Windows XP has these environment variables:
Vista adds a few new environment variables, such as |
|||
|
|
|
|
The KnownFolderID on MSDN is the official list. Look at SHGetFolderlocation() (XP) or SHGetKnownFolderIDList() (Vista/W7) on how to get the location of these folders properly. |
|||
|
|
|
A lot of the information can be found in the MSDN page for Special Folders: http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx. It's useful information in addition to John's answer |
||
|