WebClient client = new WebClient();下载到本地指定文件夹
时间: 2024-05-06 15:20:49 浏览: 148
使用WebClient实现文件下载
4星 · 用户满意度95%
以下是使用C#的WebClient类下载文件并将其保存到本地指定文件夹中的示例代码:
```csharp
using System.Net;
// 下载文件的URL和本地保存路径
string fileUrl = "http://example.com/myfile.pdf";
string savePath = @"C:\Downloads\myfile.pdf";
// 创建WebClient对象并下载文件
using (WebClient client = new WebClient())
{
client.DownloadFile(fileUrl, savePath);
}
```
在上面的示例代码中,我们首先定义了需要下载的文件的URL和本地保存路径。然后,我们使用WebClient类创建一个客户端对象,并使用其DownloadFile方法将文件下载到本地指定文件夹中。
要将文件保存到不同的文件夹中,请更改savePath变量的值以反映新路径。
阅读全文