C#抓取网络图片保存到本地的实现方法
程序员文章站
2023-12-17 16:59:22
实例如下所示:
system.net.webclient mywebclient = new system.net.webclient();
//将头像保存...
实例如下所示:
system.net.webclient mywebclient = new system.net.webclient(); //将头像保存到服务器 string virpath = "/uploads/appimage/" + user.id + "/"; createdir(virpath); string filename = guid.newguid().tostring() + ".png"; mywebclient.downloadfile(headimgurl, system.web.httpcontext.current.request.physicalapplicationpath + virpath + filename); user.portrait = virpath + filename;
#region 创建目录 /// <summary> /// 创建目录 /// </summary> /// <param name="dir">要创建的目录路径包括目录名</param> public static void createdir(string dir) { if (dir.length == 0) return; if (!directory.exists(system.web.httpcontext.current.request.physicalapplicationpath + "\\" + dir)) directory.createdirectory(system.web.httpcontext.current.request.physicalapplicationpath + "\\" + dir) ; } #endregion
以上这篇c#抓取网络图片保存到本地的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读