c# get path of directory code example
Example 1: get directory name of path c#
string filename = @"C:/folder1/folder2/file.txt";
string FolderName = new DirectoryInfo(System.IO.Path.GetDirectoryName(filename)).Name;
Example 2: get documents path c#
String path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);