首页 > Web开发 > 详细

net core 3.1 open file

时间:2020-07-09 18:39:27      阅读:82      评论:0      收藏:0      [点我收藏+]
[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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!