C# 拷贝文件到指定位置
时间: 2024-08-14 15:00:37 浏览: 44
C#将文件复制到指定文件夹并整理
在C#中,你可以使用`System.IO.File.Copy`方法来拷贝文件到指定的位置。这个方法的基本语法如下:
```csharp
using System.IO;
string sourceFile = "源文件路径";
string destinationPath = "目标文件路径";
try
{
File.Copy(sourceFile, destinationPath, true); // 第三个参数true表示复制文件包括其属性
Console.WriteLine("文件已成功复制到 {0}", destinationPath);
}
catch (Exception ex)
{
Console.WriteLine("文件复制失败: {0}", ex.Message);
}
```
这里,`sourceFile`变量是你想要复制的源文件路径,`destinationPath`则是你希望新文件存在的目的地。如果需要保留原文件的所有元数据(如创建时间、权限等),第三个参数设置为`true`;如果你只想复制文件内容,可以设为`false`。
阅读全文