所以我有這樣的代碼:如何將文本附加到C#中所有現有的.txt文檔?
class Program
{
static void Main(string[] args)
{
// Set a variable to the My Documents path.
string mydocpath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var dir = new DirectoryInfo(mydocpath + @"\sample\");
string msg = "Created by: Johny";
foreach (var file in dir.EnumerateFiles("*.txt"))
{
file.AppendText(msg); //getting error here
}
}
}
而且我想頁腳添加到樣本文件夾中所有的文本文件,但由於AppendText通過不接受一個字符串參數,我得到一個錯誤。我只是想知道我該怎麼做?