我正在尝试创建一个文件上传页面,用户可以在其中上传图像或文档并以列表方式显示,我已设法将图像上传到我在项目中创建的文件夹中,但是我我不知道我是怎么回收它的,每当我尝试搜索它时,我会得到无用的帖子,这些帖子并不适合我的问题。
这是我的代码:
//
// GET: /Upload/
[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
if (file.ContentLength > 0)
{
var fileName = Path.GetFileName(file.FileName);
var path = Path.Combine(Server.MapPath("~/Images/Uploads"), fileName);
file.SaveAs(path);
System.Diagnostics.Debug.WriteLine(path);
}
Server.MapPath("~/App_Data/Uploads/");
return RedirectToAction("Index", file);
}