How to get the proper Windows or Program Files parth. Also several other Special Folders.
CodeKeep C# Feed Maggio 5th, 2008
Description: This is well known by many but took me a while to discover when new to C#. There quite a list in the enumeration of special folders
Link: http://www.codekeep.net/snippets/5203acc2-8e47-4972-ac6f-3fc4e85b514f.aspx
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles); Environment.GetFolderPath(Environment.SpecialFolder.System); Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);






