C# 如何获取当前应用程序的父目录

// 获取当前运行路径的上级目录(父目录)
System.IO.DirectoryInfo topDir = System.IO.Directory.GetParent(System.Environment.CurrentDirectory);
// 继续获取上级的上级的上级的目录。
string pathto = topDir.Parent.Parent.FullName;
// 注意一个Parent获取上一级的目录。

转载于:https://www.cnblogs.com/lanshy/p/3145447.html

你可能感兴趣的:(C# 如何获取当前应用程序的父目录)