码迷,mamicode.com
首页 > 其他好文 > 详细

关于fileUpload的路径问题

时间:2015-03-02 18:29:58      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

HttpPostedFileBase uploadFile = Request.Files[file] as HttpPostedFileBase;
string fileN = uploadFile.FileName;//获取文件名称
if (fileN.IndexOf("\\") > 0) //如果有/ 说明是ie浏览器
{
fileN = fileN.Substring(fileN.LastIndexOf("\\") + 1, fileN.Length - fileN.LastIndexOf("\\") - 1);
}
fileN = DateTime.Now.ToString("yyyyMMddHHmmssffff") + Path.GetExtension(fileN);//设置文件名称
if (uploadFile != null && uploadFile.ContentLength > 0)
{
path = Path.Combine(pathForSaving, fileN);
uploadFile.SaveAs(path);
url += "/Upload/files/" + fileN;
int i = Request.Files.Count;
}

关于fileUpload的路径问题

标签:

原文地址:http://www.cnblogs.com/JeffConrtoller/p/4309216.html

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