小編給大家分享一下C#如何抓取網(wǎng)絡(luò)圖片保存到本地,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
淮濱ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!
實(shí)例如下所示:
System.Net.WebClient myWebClient = new System.Net.WebClient(); //將頭像保存到服務(wù)器 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 創(chuàng)建目錄 ////// 創(chuàng)建目錄 /// /// 要創(chuàng)建的目錄路徑包括目錄名 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#如何抓取網(wǎng)絡(luò)圖片保存到本地”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!