-1

我正在尝试访问我的项目中的文件。

所以我会创建一个名为的新文件夹Files,该文件夹内包含各种 HTML 文件。

无论如何,我可以通过访问"Program/Files/file.html"或类似的方式访问这些文件。

4

1 回答 1

3

你的意思是这样的吗?

using System.IO;
...

string folderPath = AppDomain.CurrentDomain.BaseDirectory; // or whatever folder you want to load..

foreach (string file in Directory.EnumerateFiles(folderPath, "*.html"))
{
    string contents = File.ReadAllText(file);
}
于 2012-08-10T16:04:29.353 回答