C# 获取当前路径的父路径

//获取当前运行路径的上级目录(父目录)

 System.IO.DirectoryInfo topDir = System.IO.Directory.GetParent(System.Environment.CurrentDirectory);
//D:\项目\测试\test\bin\Debug

//继续获取上级的上级的上级的目录。
 

string pathto = topDir.Parent.Parent.FullName;//D:\项目\测试\test

获取路径中最后一个文件夹的名字

string fileName = Path.GetFileNameWithoutExtension("E:\dyl190909\Demo\CulculateTest\Culculate\View.cs");
//fileName结果为Culculate
 

注:一个Parent获取向上一级的目录。

你可能感兴趣的:(C#,父路径,当前路径)