本文介绍了如何从文件的完整路径中获取目录?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
获取文件所在目录的最简单方法是什么?我正在使用它来设置工作目录.
What is the simplest way to get the directory that a file is in? I'm using this to set a working directory.
string filename = @"C:MyDirectoryMyFile.bat";
在这个例子中,我应该得到C:MyDirectory".
In this example, I should get "C:MyDirectory".
推荐答案
如果您确实有绝对路径,请使用 Path.GetDirectoryName(path)
.
If you've definitely got an absolute path, use Path.GetDirectoryName(path)
.
如果您只能获得相对名称,请使用 new FileInfo(path).Directory.FullName
.
If you might only get a relative name, use new FileInfo(path).Directory.FullName
.
请注意,Path
和 FileInfo
都可以在名称空间 System.IO
中找到.
Note that Path
and FileInfo
are both found in the namespace System.IO
.
这篇关于如何从文件的完整路径中获取目录?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!