如何获取项目中文件夹的路径(以及该文件夹中文件的路径)?

时间:2014-09-11 13:14:05

标签: c#

在我的项目中,我添加了一个包含文件的文件夹。他们都有本地路径。

我希望有一个字符串数组,其中包含所有这些文件的所有路径,但我不知道如何做到这一点。

我试过这个,但它只返回" namespace + project + foldername + name"。

格式的字符串。
string[] test = Assembly.GetExecutingAssembly().GetManifestResourceNames();

我想要的是完整的路径:

  

d:\项目名\项目\文件夹\ file.ext

它也有助于获取文件夹的引用/路径,因为那样我就可以获得文件:

System.IO.Directory.GetFiles();

有人有个主意吗?

2 个答案:

答案 0 :(得分:0)

试试这个。

string path= Path.GetDirectoryName(Path.GetDirectoryName(System.IO.Directory.GetCurrentDirectory()));

答案 1 :(得分:0)

试试这个

string[] files= Directory.GetFiles(@"directory");

如果您想使用项目目录

string path = Directory.GetCurrentDirectory();