csharp 在MVC中下载文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 在MVC中下载文件相关的知识,希望对你有一定的参考价值。


public IActionResult MyAction([FromServices] IHostingEnvironment environment )
{
  var filePath== System.IO.Path.Combine(environment.WebRootPath,  fileName);
  string contentType;
  new FileExtensionContentTypeProvider().TryGetContentType(filePath, out contentType);
  contentType=contentType ?? "application/octet-stream";
  return File(System.IO.File.ReadAllBytesAsync(filePath),contentType);
}
File(filePath, MimeMapping.GetMimeMapping(filePath),"errorReport.xlsx");

以上是关于csharp 在MVC中下载文件的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 selenium 在点击事件中下载文件?

如何在 wkwebview 中下载文件

在iOS中下载文件[重复]

在 Headless Chrome 中下载文件,(python)

在 iPhone 设备中下载文件

r 在Shiny中下载文件功能