Mega Code Archive

 
Categories / C# / Development Class
 

Gets the path to the system special folder that is identified by the specified enumeration

using System; class Sample  {     public static void Main()      {       Console.WriteLine("GetFolderPath: {0}",                   Environment.GetFolderPath(Environment.SpecialFolder.System));     } }