c# how to list current directory code example
Example: c# get current directory
string currentDir = System.IO.Directory.GetCurrentDirectory();
//returns the current directory of the application when executing
string currentDir = System.IO.Directory.GetCurrentDirectory();
//returns the current directory of the application when executing