當前位置:首頁 » 操作系統 » 圖片伺服器源碼

圖片伺服器源碼

發布時間: 2024-08-13 11:13:39

❶ C#(WinForm)上傳圖片到伺服器

//本地上傳代碼Filesitem=fisasFiles;
WebClientwc=newWebClient();
stringurl=string.Format("{0}?Overwrite=true&Path={1}","伺服器上傳地址",item.Path);
wc.UploadFile(url,"POST",item.Path);
//伺服器接收
stringServerSrc=context.Server.MapPath("~/DownLogin/");
foreach(stringfilekeyincontext.Request.Files)
{
HttpPostedFilefile=context.Request.Files[filekey];
stringFilePath=Path.Combine(ServerSrc,file.FileName);
if(File.Exists(FilePath))
{
if(Convert.ToBoolean(context.Request["overwrite"]))
{
File.Delete(FilePath);
}
else
continue;
}
file.SaveAs(FilePath);
}

熱點內容
訪問內網計算機 發布:2024-11-25 12:37:53 瀏覽:968
蘋果文件夾名字大全 發布:2024-11-25 12:28:03 瀏覽:589
ipad上b站緩存分屏 發布:2024-11-25 12:27:59 瀏覽:980
資料庫日誌文件查看 發布:2024-11-25 12:17:28 瀏覽:47
騰訊視頻明明緩存了看不了 發布:2024-11-25 12:08:01 瀏覽:181
存儲區域網路分布 發布:2024-11-25 12:07:12 瀏覽:388
安卓怎麼用湯不熱 發布:2024-11-25 11:49:06 瀏覽:843
java線程調用 發布:2024-11-25 11:42:45 瀏覽:844
識地圖演算法 發布:2024-11-25 11:31:10 瀏覽:20
楊輝三角c語言程序一維數組 發布:2024-11-25 11:30:30 瀏覽:214