在C#中,要在文本文件中追加写入而不是覆盖,可以使用StreamWriter
类的Append
方法。下面是一个简单的示例代码:
using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = "example.txt";
string textToAppend = "This is a new line.";
using (StreamWriter writer = new StreamWriter(filePath, append: true))
{
writer.WriteLine(textToAppend);
}
}
}
在这个示例中,我们首先定义了要追加写入的文件路径和要写入的文本。然后,我们使用StreamWriter
类创建一个新的writer
实例,并将append
参数设置为true
,以便将文本追加到文件末尾,而不是覆盖文件。最后,我们使用WriteLine
方法将文本写入文件,并在完成后关闭文件。
这个示例中使用的是C#语言,是一种流行的编程语言,广泛应用于Windows平台的应用程序开发和网络编程。
领取专属 10元无门槛券
手把手带您无忧上云