Mega Code Archive

 
Categories / C# / File Stream
 

Set Current Directory

using System; using System.IO; class MainClass {     static void Main() {         Console.WriteLine("Changing current directory to c:\\");         Directory.SetCurrentDirectory(@"c:\");         Console.WriteLine("Now the relative path 'file.txt' " + "will automatically become '" + Path.GetFullPath("file.txt") + "'");     } }