Mega Code Archive

 
Categories / C# / Development Class
 

Environment GetFolderPath

using System; using System.Windows.Forms;     class MyDocumentsFolder {      public static void Main()      {           Console.WriteLine(Environment.GetFolderPath(Environment.SpecialFolder.Personal));                 } }