标签: c# asp.net
我如何获得以下目录的父目录?
string rootFolder = System.Web.HttpContext.Current.Server.MapPath(APP_PATH);
答案 0 :(得分:4)
使用Directory.GetParent。
答案 1 :(得分:2)
new DirectoryInfo(rootFolder).Parent.FullName或Directory.GetParent(rootFolder).FullName
new DirectoryInfo(rootFolder).Parent.FullName
Directory.GetParent(rootFolder).FullName