在MVC中使用GUID名称下载文件

时间:2014-04-17 02:24:53

标签: asp.net asp.net-mvc-3 asp.net-mvc-4

我想下载文件夹中存在的文件,即App_Data。这个我用GUID保存但无法下载的文件。 我的代码如下:

public FilePathResult DownLoadDispatch(long CIDInvID)
{
    var Attr = db.ConsolidatedInvoiceDispatchDocuments.FirstOrDefault(x => x.ConsolidatedInvoiceDispatchID == CIDInvID);
    string path = System.Web.HttpContext.Current.Server.MapPath("~") + "/App_Data/files/Dispatch/" + Attr.StoredName.ToString();
    string fileName = Attr.FileName;
    return File(path + fileName, "text/plain", "test.txt");
}

0 个答案:

没有答案