码迷,mamicode.com
首页 > Web开发 > 详细

简单的图片上传

时间:2018-03-20 10:32:05      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:ted   filename   pre   file   ring   bsp   log   saveas   style   

HttpPostedFileBase file = Request.Files["imgfile"];
var filePath = "/Upload/image/";
var timeDirectory = DateTime.Now.ToString("yyyyMMdd");
filePath = filePath + timeDirectory;
if (!Directory.Exists(Server.MapPath(filePath))) { Directory.CreateDirectory(Server.MapPath(filePath)); }
var fileName = Guid.NewGuid().ToString() + ".jpg";
string Path = filePath + "/" + fileName;
string allPath = Server.MapPath(Path);
//保存图片
file.SaveAs(allPath);

 

简单的图片上传

标签:ted   filename   pre   file   ring   bsp   log   saveas   style   

原文地址:https://www.cnblogs.com/shiyige-216/p/8607477.html

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