VS 2013,MVC应用程序需要从特定驱动器下载文件。我写了下面的代码。所有文件都显示在网格中。下面硬编码路径但仍然无法下载文件
[HttpPost]
public FileResult downloadlogfiles(string logfilename)
{
byte[] fileBytes = System.IO.File.ReadAllBytes(@"d:\Logs\try.txt");
string fileName = "myfile.ext";
return File(fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet, fileName);
}