最佳答案
我想创建一个。Txt 文件并写入它,如果该文件已经存在,我只想再附加一些行:
string path = @"E:\AppServ\Example.txt";
if (!File.Exists(path))
{
File.Create(path);
TextWriter tw = new StreamWriter(path);
tw.WriteLine("The very first line!");
tw.Close();
}
else if (File.Exists(path))
{
TextWriter tw = new StreamWriter(path);
tw.WriteLine("The next line!");
tw.Close();
}
但是第一行似乎总是被覆盖... 我怎样才能避免在同一行上写(我在循环中使用它) ?
我知道这是一个非常简单的事情,但是我以前从来没有使用过 WriteLine
方法。