Я новичок в MVC и застрял с проблемой. Я искал ответ повсюду и не смог его найти, но я уверен, что что-то пропустило меня. Проблема в том, что я не знаю, как получить доступ к файлу после его загрузки в папку App_Data. Я использую тот же код, который нашел на всех форумах:
На мой взгляд, я использую это
@using (Html.BeginForm("Index", "Home", FormMethod.Post,
new { enctype="multipart/form-data" }))
{
<input type="file" name="file" />
<input type="submit" value="submit" />
}
Для моего контроллера я использую это
public class HomeController : Controller
{
// This action renders the form
public ActionResult Index()
{
return View();
}
// This action handles the form POST and the upload
[HttpPost]
public ActionResult Index(HttpPostedFileBase file)
{
// Verify that the user selected a file
if (file != null && file.ContentLength > 0)
{
// extract only the fielname
var fileName = Path.GetFileName(file.FileName);
// store the file inside ~/App_Data/uploads folder
var path = Path.Combine(Server.MapPath("~/App_Data/uploads"), fileName);
file.SaveAs(path);
}
// redirect back to the index action to show the form once again
return RedirectToAction("Index");
}
}
Моя модель
public class FileDescription
{
public int FileDescriptionId { get; set; }
public string Name { get; set; }
public string WebPath { get; set; }
public long Size { get; set; }
public DateTime DateCreated { get; set; }
}
Дело в том, что я хочу загрузить файл в базу данных, а затем указать WebPath в качестве ссылки на мой файл. Надеюсь, я прояснил себя достаточно ясно. Любая помощь будет принята с благодарностью.
Спасибо