.net Core中根據文件路徑和名字將文件轉為流返回給前端提供下載,需要傳入文件路徑(不帶功能變數名稱),和文件名稱(用於下載使用),前端使用<a></a>標簽來進行訪問下載,或者 location.href 來訪問 [ApiController] [Route("[controller]")] publ ...
.net Core中根據文件路徑和名字將文件轉為流返回給前端提供下載,需要傳入文件路徑(不帶功能變數名稱),和文件名稱(用於下載使用),前端使用<a></a>標簽來進行訪問下載,或者 location.href 來訪問
[ApiController] [Route("[controller]")] public class FilesController : ControllerBase { private readonly IWebHostEnvironment _webHostEnvironment; public FilesController(IWebHostEnvironment webHostEnvironment) { _webHostEnvironment = webHostEnvironment; } /// <summary> /// 獲取文件流 /// </summary> /// <param name="url">文件路徑</param> /// <param name="name">文件名稱</param> /// <returns></returns> [HttpGet] public async Task<IActionResult> UploadFile(string url,string name) { string webRootPath = _webHostEnvironment.WebRootPath; string contentRootPath = _webHostEnvironment.ContentRootPath; var str = url.Split('.');//獲取文件尾碼 var newpath = contentRootPath + "/wwwroot/" + url;//我這裡的url是/files/202205/xxx.txt;不帶功能變數名稱,因為是netcore項目所以前面加上wwwroot FileStream fs = new FileStream(newpath, FileMode.OpenOrCreate, FileAccess.Read); byte[] vs = new byte[fs.Length]; while (true) { int r = fs.Read(vs, 0, vs.Length); string s = Encoding.UTF8.GetString(vs, 0, r); if (r == 0) { fs.Close(); break; } } return File(vs, "application/"+ str[1].ToString(), name+"."+ str[1].ToString()); } }
contentRoot是使用程式更目錄
ContentRoot: C:\MyApp\wwwroot
WebRoot: C:\MyApp\wwwroot\wwwroot
這裡建議使用contentRoot在後面加上/wwwroot/
讀到文件之後將它放入byte數組裡面寫入流,防止有較大文件所以上面使用while迴圈寫入