我试图访问项目中的文件。
所以我会创建一个名为Files
的新文件夹,并在该文件夹中包含各种HTML文件。
无论如何,我可以通过"Program/Files/file.html"
或类似的方式访问这些文件。
答案 0 :(得分: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);
}