<code class="language-csharp">public FileResult Download(string filePath, string fileName)
{
// 从指定位置或流获取文件字节
byte[] fileBytes = GetFileBytes(filePath);
// 使用指定的字节、MIME类型和文件名返回FileResult
return File(fileBytes, System.Net.Mime.MediaTypeNames.Application.Octet, fileName);
}</code>
ログイン後にコピー