标签: c# .net
我的文件名如“c:\ temp \ test \ test.jpg”,如何获取“c:\ temp \ test”目录?
答案 0 :(得分:10)
使用System.IO.Path.GetDirectoryName()
System.IO.Path.GetDirectoryName()
答案 1 :(得分:0)
我总是使用System.IO.FileInfo类完成这样的事情。 DirectoryName属性在此实例中应该有所帮助。
答案 2 :(得分:0)
string path = System.IO.Path.GetDirectoryName(fullFileName);