首页 > Web开发 > 详细

.Net Core 上传图片

时间:2020-06-28 10:45:02      阅读:58      评论:0      收藏:0      [点我收藏+]

NnGet

 using Microsoft.AspNetCore.Hosting;

实现逻辑

        private IHostingEnvironment _host;
        public TestController( IHostingEnvironment host)
        { 
            this._host = host;
        }
        [HttpPost]
        public async Task<JsonResult> AddTest(Test test, IFormCollection collection)
        {
            var files = collection.Files;
            if (files.Count > 0)
            {
                var absolutePath = _host.WebRootPath+ "\\TestPic";
                 
                string[] fileType = new string[] { ".gif", ".jpg", ".jpeg", ".bmp", ".png" };
                string extension = Path.GetExtension(files[0].FileName);
                if (fileType.Contains(extension.ToLower()))
                {
                    if (!Directory.Exists(absolutePath))
                    {
                        Directory.CreateDirectory(absolutePath);
                    }
                    string fileName = DateTime.Now.ToString("yyyyMMddHHmmss") + extension;
                    var filePath = absolutePath + "\\" + fileName;
                    using (var stream = new FileStream(filePath, FileMode.Create))
                    {
                        await files[0].CopyToAsync(stream);
                    }
                    
                    return Json(new { Result = "上传成功", Flag = 1 } );
                }
                else
                {
                    return Json(new { Result = "图片格式不正确", Flag = 0 });
                }
            }
            return Json(new { Result = "请上传图片", Flag = 0 });
        }

  

.Net Core 上传图片

原文:https://www.cnblogs.com/HYJ0201/p/13201022.html

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