我有它建议我应该使用FileResult允许用户从我的Asp下载文件。Net MVC应用程序。但我能找到的唯一例子总是与图像文件有关(指定内容类型image/jpeg)。
但如果我不知道文件类型怎么办?我希望用户能够从我的网站的文件区下载几乎任何文件。
我读过一个这样做的方法(代码参见以前的文章),实际上工作正常,除了一件事:在另存为对话框中出现的文件名与文件路径用下划线连接(folder_folder_file.ext)。此外,似乎人们认为我应该返回一个FileResult,而不是使用这个自定义类,我已经找到BinaryContentResult。
有人知道在MVC中做这样的下载的“正确”方式吗?
< p >编辑: 我得到了答案(如下),但只是认为我应该张贴完整的工作代码,如果其他人感兴趣:public ActionResult Download(string filePath, string fileName)
{
string fullName = Path.Combine(GetBaseDir(), filePath, fileName);
byte[] fileBytes = GetFile(fullName);
return File(
fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet, fileName);
}
byte[] GetFile(string s)
{
System.IO.FileStream fs = System.IO.File.OpenRead(s);
byte[] data = new byte[fs.Length];
int br = fs.Read(data, 0, data.Length);
if (br != fs.Length)
throw new System.IO.IOException(s);
return data;
}