get directory name of path csharp

Code Example - get directory name of path csharp

                
                        string filename = @"C:/folder1/folder2/file.txt";
string FolderName = new DirectoryInfo(System.IO.Path.GetDirectoryName(filename)).Name;