get directory path from string C# 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: c# get folder path from file path
Path.GetDirectoryName(filename);