c# 保存文件文本文件
时间: 2023-11-12 18:54:51 浏览: 99
在C#中保存文本文件,可以使用System.IO命名空间下的File类的静态方法WriteAllText或AppendAllText。WriteAllText方法可以创建一个新的文本文件并写入内容,如果文件已存在,则会覆盖原有内容。AppendAllText方法可以将内容追加到现有的文本文件中。
以下是一个示例代码,演示如何使用C#保存文本文件:
```csharp
using System;
using System.IO;
class Program
{
static void Main(string[] args)
{
string filePath = "path\\to\\your\\file.txt";
string content = "This is the content to be saved.";
// 使用WriteAllText方法保存文本文件
File.WriteAllText(filePath, content);
// 使用AppendAllText方法追加内容到文本文件
File.AppendAllText(filePath, " This is the appended content.");
Console.WriteLine("File saved successfully.");
}
}
```
请注意替换`filePath`变量的值为你想要保存的文件路径,替换`content`变量的值为你要保存的内容。
阅读全文