码迷,mamicode.com
首页 > Web开发 > 详细

net 把指定 URI 的资源下载到本地

时间:2019-04-12 11:56:51      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:div   style   ase   col   guid   address   base   temp   client   

 

            DirectoryInfo dir = new DirectoryInfo(AppContext.BaseDirectory);
            var path = dir.FullName + @"tempFile\";
            var filePath = path + Guid.NewGuid() + fileName;
            if (!Directory.Exists(path))
                Directory.CreateDirectory(path);
            using (WebClient client = new WebClient())
            {
               // address:从中下载数据的 URI,www.xxxx.com/xx.jpg
               // filePath:从中下载数据的 URI,C:\\tempFile\\xx.jpg
                client.DownloadFile(address, filePath);
            }

 

net 把指定 URI 的资源下载到本地

标签:div   style   ase   col   guid   address   base   temp   client   

原文地址:https://www.cnblogs.com/Cailf/p/10694973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!