C# 将C:\Users\Lee\Desktop\6PB0435401GP.pdf这个PDF复制下载到另外一个文件夹中。
时间: 2024-04-10 22:25:23 浏览: 130
在C#中,可以使用System.IO命名空间下的File类来实现文件的复制和下载操作。以下是一个示例代码,演示如何将指定的PDF文件复制下载到另外一个文件夹中:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
string sourceFilePath = @"C:\Users\Lee\Desktop\6PB0435401GP.pdf";
string destinationFolderPath = @"C:\Users\Lee\Downloads\";
try
{
// 获取源文件名
string fileName = Path.GetFileName(sourceFilePath);
// 构建目标文件路径
string destinationFilePath = Path.Combine(destinationFolderPath, fileName);
// 复制文件
File.Copy(sourceFilePath, destinationFilePath);
Console.WriteLine("文件复制下载成功!");
}
catch (Exception ex)
{
Console.WriteLine("文件复制下载失败:" + ex.Message);
}
}
}
```
请注意,上述代码中的`sourceFilePath`变量表示源文件的路径,`destinationFolderPath`变量表示目标文件夹的路径。你可以根据实际情况修改这两个变量的值。
阅读全文