Answers for "read current path c#"

C#
15

c# get current directory

string currentDir = System.IO.Directory.GetCurrentDirectory();
//returns the current directory of the application when executing
Posted by: Guest on December-11-2020
1

c# get folder path from file path

Path.GetDirectoryName(filename);
Posted by: Guest on June-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language