MVC Controller 下载文件

1,Controller中的方法

public FileResult DownloadRFQFile(string filename)
        {
            string folder = AppDomain.CurrentDomain.BaseDirectory + @"data\RFQReply\";
           
            byte[] fileBytes = System.IO.File.ReadAllBytes(folder + filename);
            return File(fileBytes, "application/zip", filename);
          
        }

2,cshtml 页面中执行方法,获取下载文件

var url = "DownloadRFQFile?filename=" + dataFN;
window.location.href = url;

 

上一篇:flask中的static_path和static_path_url和static_folder


下一篇:android – 尝试将图片保存到尚未创建的特定图片文件夹中