在C#中,你可以使用System.IO
命名空间中的StreamWriter
类来实现追加写入文件。以下是一个简单的示例:
using System;
using System.IO;
class Program
{
static void Main()
{
// 指定要追加写入的文件路径
string filePath = "example.txt";
// 使用StreamWriter对象以追加模式打开文件
using (StreamWriter writer = new StreamWriter(filePath, true))
{
// 要追加的内容
string contentToAppend = "This is a new line to append.\n";
// 将内容追加到文件中
writer.WriteLine(contentToAppend);
// 也可以使用WriteString方法追加内容
// writer.WriteString(contentToAppend);
// 刷新缓冲区,确保内容被写入文件
writer.Flush();
Console.WriteLine("Content appended successfully.");
}
}
}
在这个示例中,我们首先指定了要追加写入的文件路径。然后,我们使用StreamWriter
类创建一个对象,并将true
作为第二个参数传递给它,以便以追加模式打开文件。接下来,我们使用WriteLine
或WriteString
方法将内容追加到文件中,并调用Flush
方法确保内容被写入文件。最后,我们在控制台上输出一条消息,表示内容已成功追加。