C#winform怎么上传文件到服务器
如果用webclient.UploadFile(URL,FileName);这个URL怎么写,查资料看说是需要在服务器建立一个接收文件有页面,请问这个接收文件的页面怎么做...
如果用webclient.UploadFile(URL, FileName); 这个URL怎么写,查资料看说是需要在服务器建立一个接收文件有页面,请问这个接收文件的页面怎么做才使它有保存资料的功能呢。
展开
2个回答
展开全部
public void ProcessRequest(HttpContext hc)
{
string NowPath = "D:\\upload\\"+hc.Request["path"];
if (!Directory.Exists(NowPath))
{
Directory.CreateDirectory(NowPath);
}
foreach (string fileKey in hc.Request.Files)
{
HttpPostedFile file = hc.Request.Files[fileKey];
string FilePath = Path.Combine(NowPath, file.FileName);
if (File.Exists(FilePath))
{
if (Convert.ToBoolean(hc.Request["overwrite"]))
{
File.Delete(FilePath);
}
else
{
continue;
}
}
file.SaveAs(FilePath);
}
}
public bool IsReusable
{
get
{
return true;
}
}
}
{
string NowPath = "D:\\upload\\"+hc.Request["path"];
if (!Directory.Exists(NowPath))
{
Directory.CreateDirectory(NowPath);
}
foreach (string fileKey in hc.Request.Files)
{
HttpPostedFile file = hc.Request.Files[fileKey];
string FilePath = Path.Combine(NowPath, file.FileName);
if (File.Exists(FilePath))
{
if (Convert.ToBoolean(hc.Request["overwrite"]))
{
File.Delete(FilePath);
}
else
{
continue;
}
}
file.SaveAs(FilePath);
}
}
public bool IsReusable
{
get
{
return true;
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询