0
SQL Server 2012でFileTable
を使用していて、ユーザーにFileTable
からファイルをダウンロードさせたいと考えています。どのようなパスを使うべきですか?ファイルテーブルからファイルをダウンロードする
public ActionResult DownloadFile(string filename)
{
//string filename = Request.QueryString["MOVIE_FILE"];
string path = "\\Maaz-laptop\\mssqlservermaaz\\FileDBFileStreamDirectory\\FileDirectory";
Response.ContentType = "application/force-download;";
Response.AppendHeader("Content-Disposition", "attachment; filename=" + filename);
Response.WriteFile(Server.MapPath(path) + filename);
Response.End();
return null;
}