Windows special folders enum


Ever want to find out from c# where some "special" folders are located so you can use them in your desktop application?

Here's how.

[code:c#]

Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)


[/code]

 

See  Environment.SpecialFolder enumeration for more locations.

Comments are closed