C#中如何获取路径字符串的上一级路径?

2025-01-19 10:20:56
推荐回答(5个)
回答1:

自已可以编写函数按“\”进行截取
public string getName(string path)
{
return path.substring(path.lastindexof("\"),path.length- path.lastindexof('\')-1);
}

回答2:

newPath = path.Substring(0, path.LastIndexOf('\\'));

回答3:

split()

回答4:

MessageBox.Show(System.IO.Path.GetDirectoryName(System.IO.Path.GetDirectoryName(System.IO.Path.GetDirectoryName(@"C:\ABC\Temp\DC\"))));

回答5:

"..\\"
退两级就用"..\\..\\"