码迷,mamicode.com
首页 > Web开发 > 详细

net core 3.1 open file

时间:2020-07-09 17:56:05      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:action   ppi   abc   col   class   tty   empty   bsp   rem   

[HttpGet]
        public IActionResult GetFile(string filepath)
        {
            if (string.IsNullOrEmpty(filepath)) filepath = "D:\\ABC.log";
            var provider = new FileExtensionContentTypeProvider();
            FileInfo fileInfo = new FileInfo(filepath);
            var ext = fileInfo.Extension;
            new FileExtensionContentTypeProvider().Mappings.TryGetValue(ext,out var contenttype);
            return File(System.IO.File.ReadAllBytes(filepath), contenttype ?? "application/octet-stream", fileInfo.Name);
        }

 

net core 3.1 open file

标签:action   ppi   abc   col   class   tty   empty   bsp   rem   

原文地址:https://www.cnblogs.com/LiuFengH/p/13275019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!