您可以使用C#中的WebClient類來下載文件。以下是一個簡單的示例代碼,演示如何使用WebClient下載文件:
using System;
using System.Net;
class Program
{
static void Main()
{
string url = "http://example.com/file.pdf";
string savePath = "C:\\Downloads\\file.pdf";
using (WebClient client = new WebClient())
{
client.DownloadFile(url, savePath);
Console.WriteLine("File downloaded to: " + savePath);
}
}
}
在這個示例中,我們首先創建一個WebClient實例,然后使用DownloadFile方法從指定的URL下載文件,并指定要保存的文件路徑。最后,我們打印出文件下載的路徑。
請確保您的應用程序有適當的權限來寫入指定的文件路徑。