我有一個文件夾 - 「C:\ scripts」閱讀目錄子文件夾中的所有文件
在「腳本」中,我有幾個子文件夾,例如 - 「C:\ scripts \ subfolder1」「C:\ scripts \ subfolder2」等,其中包含html
文件。
我嘗試使用下面的代碼 -
foreach (string file in Directory.EnumerateFiles(@"C:\scripts","*.html"))
{
string contents = File.ReadAllText(file);
}
但是這不起作用由於html
文件在子文件之中。
如何訪問子文件夾中的html文件,而無需手動放入每個子文件夾的路徑?