这是我的代码,它在名为 Books 的文件夹中上传带有路径的文件,我只希望将路径存储在数据库中,然后根据路径从 Books 文件夹中获取文件。有人可以指导我如何去做.. 下面是我的代码,我正在使用 asp.net mvc 4 和实体框架。
[HttpPost]
public ActionResult upload(HttpPostedFileBase file)
{
//verify that the file is selected and not empty
if (file != null && file.ContentLength > 0)
{
//getting the name of the file
var fileName = Path.GetFileName(file.FileName);
//store file in the Books folder
var path = Path.Combine(Server.MapPath("~/BOOKS"), fileName);
file.SaveAs(path);
}
return View();
}