c# 读取文件另存为
时间: 2023-09-04 21:16:57 浏览: 123
C#保存文件或读取数据库文件 另存为.doc
在 C# 中,你可以使用 `File` 类来读取文件并另存为。下面是一个示例:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
string sourceFilePath = "path/to/source/file.txt";
string destinationFilePath = "path/to/destination/file.txt";
// 读取源文件的内容
string content = File.ReadAllText(sourceFilePath);
// 将内容另存为目标文件
File.WriteAllText(destinationFilePath, content);
Console.WriteLine("文件已成功另存为!");
}
}
```
在代码中,你需要将 `sourceFilePath` 替换为源文件的路径,将 `destinationFilePath` 替换为目标文件的路径。然后,使用 `File.ReadAllText()` 方法读取源文件的内容,并使用 `File.WriteAllText()` 方法将内容写入目标文件。
请确保你有适当的权限来读取源文件和写入目标文件。
阅读全文