C#下载文件

Posted 棉晗榜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#下载文件相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;


WebClient webClient = new WebClient();
string url = "http://192.168.1.171:8061/upload/img/2021_10/52e3b669fb594c2680c4524389b52324.jpg";
string dir = AppDomain.CurrentDomain.BaseDirectory + "cache\\\\";
if (!System.IO.Directory.Exists(dir))
{
   System.IO.Directory.CreateDirectory(dir);
}

//本地保存路径
string path = dir + System.IO.Path.GetFileName(url);
webClient.DownloadFile(url, path);

以上是关于C#下载文件的主要内容,如果未能解决你的问题,请参考以下文章

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?

C# 最有用的(自定义)代码片段是啥? [关闭]

c#代码片段快速构建代码

此 Canon SDK C++ 代码片段的等效 C# 代码是啥?

C#常用代码片段备忘

优化 C# 代码片段、ObservableCollection 和 AddRange