c#中如何取得文件路径的其中一段?

例如一个路径为D:尀Program Files尀abc.exe怎么取得D:尀Program Files 这部分?
2024-11-26 12:19:47
推荐回答(2个)
回答1:

string path = Path.GetDirectoryName(@"D:\Program Files\abc.exe");

回答2:

string str="D:\\Program Files\\abc.exe";
str.substring(0,sstrLastIndexOf('\'))