ASP.NET Core单文件和多文件上传并保存到服务端的方法
前言:
在我们日常开发中,关于图片,视频,音频,文档等相关文件上传并保存到服务端中是非常常见的一个功能,今天主要是把自己在开发中常用的两种方式记录下来方便一下直接使用,并且希望能够帮助到有需要的同学!
一、配置asp.net core中的静态文件:
简单概述:
在asp.net core应用中静态资源文件需要进行相应的配置才能够提供给客户端直接使用。
详情描述请参考官方文档:
简单配置,提供 web 根目录内的文件:
调用 startup.configure中的usestaticfiles 方法配置:
public void configure(iapplicationbuilder app) { app.usestaticfiles(); }
二、文件服务器和应用程序配置(iis,kestrel):
详情描述,请参考官方文档说明:
多部分正文长度限制:
multipartbodylengthlimit 设置每个多部分正文的长度限制。 分析超出此限制的窗体部分时,会引发 invaliddataexception。 默认值为 134,217,728 (128 mb)。 使用 multipartbodylengthlimit 中的 startup.configureservices 设置自定义此限制:
public void configureservices(iservicecollection services) { services.configure<formoptions>(options => { // set the limit to 256 mb options.multipartbodylengthlimit = 268435456; }); }
kestrel 最大请求正文大小:
对于 kestrel 托管的应用,默认的最大请求正文大小为 30,000,000 个字节,约为 28.6 mb。 使用 maxrequestbodysize kestrel 服务器选项自定义限制:
public static ihostbuilder createhostbuilder(string[] args) => host.createdefaultbuilder(args) .configurekestrel((context, options) => { // handle requests up to 50 mb options.limits.maxrequestbodysize = 52428800; }) .configurewebhostdefaults(webbuilder => { webbuilder.usestartup<startup>(); });
iis 内容长度限制:
默认的请求限制 (maxallowedcontentlength) 为 30,000,000 字节,大约 28.6 mb。 请在 web.config 文件中自定义此限制:
<system.webserver> <security> <requestfiltering> <!-- handle requests up to 50 mb --> <requestlimits maxallowedcontentlength="52428800" /> </requestfiltering> </security> </system.webserver>
三、单文件上传:
using system; using system.io; using microsoft.aspnetcore.hosting; using microsoft.aspnetcore.mvc; namespace fileuploadmanage.controllers { /// <summary> /// 图片,视频,音频,文档等相关文件通用上传服务类 /// </summary> public class fileuploadcontroller : controller { private static ihostingenvironment _hostingenvironment; public fileuploadcontroller(ihostingenvironment hostingenvironment) { _hostingenvironment = hostingenvironment; } /// <summary> /// 单文件上传 /// </summary> /// <returns></returns> public jsonresult singlefileupload() { var formfile = request.form.files[0];//获取请求发送过来的文件 var currentdate = datetime.now; var webrootpath = _hostingenvironment.webrootpath;//>>>相当于httpcontext.current.server.mappath("") try { var filepath = $"/uploadfile/{currentdate:yyyymmdd}/"; //创建每日存储文件夹 if (!directory.exists(webrootpath + filepath)) { directory.createdirectory(webrootpath + filepath); } if (formfile != null) { //文件后缀 var fileextension = path.getextension(formfile.filename);//获取文件格式,拓展名 //判断文件大小 var filesize = formfile.length; if (filesize > 1024 * 1024 * 10) //10m todo:(1mb=1024x1024b) { return new jsonresult(new { issuccess = false, resultmsg = "上传的文件不能大于10m" }); } //保存的文件名称(以名称和保存时间命名) var savename = formfile.filename.substring(0, formfile.filename.lastindexof('.'))+"_"+currentdate.tostring("hhmmss")+ fileextension; //文件保存 using (var fs = system.io.file.create(webrootpath + filepath + savename)) { formfile.copyto(fs); fs.flush(); } //完整的文件路径 var completefilepath = path.combine(filepath, savename); return new jsonresult(new { issuccess = true, returnmsg = "上传成功", completefilepath = completefilepath }); } else { return new jsonresult(new { issuccess = false, resultmsg = "上传失败,未检测上传的文件信息~" }); } } catch (exception ex) { return new jsonresult(new { issuccess = false, resultmsg = "文件保存失败,异常信息为:" + ex.message }); } } } }
四、多文件上传:
using system; using system.collections.generic; using system.io; using microsoft.aspnetcore.hosting; using microsoft.aspnetcore.http; using microsoft.aspnetcore.http.internal; using microsoft.aspnetcore.mvc; using microsoft.entityframeworkcore.internal; namespace fileuploadmanage.controllers { /// <summary> /// 图片,视频,音频,文档等相关文件通用上传服务类 /// </summary> public class fileuploadcontroller : controller { private static ihostingenvironment _hostingenvironment; public fileuploadcontroller(ihostingenvironment hostingenvironment) { _hostingenvironment = hostingenvironment; } /// <summary> /// 多文件上传 /// </summary> /// <param name="formcollection">表单集合值</param> /// <returns>服务器存储的文件信息</returns> public jsonresult multifileupload(iformcollection formcollection) { var currentdate = datetime.now; var webrootpath = _hostingenvironment.webrootpath;//>>>相当于httpcontext.current.server.mappath("") var uploadfilerequestlist = new list<uploadfilerequest>(); try { //formcollection转化为formfilecollection var files = (formfilecollection)formcollection.files; if (files.any()) { foreach (var file in files) { var uploadfilerequest = new uploadfilerequest(); var filepath = $"/uploadfile/{currentdate:yyyymmdd}/"; //创建每日存储文件夹 if (!directory.exists(webrootpath + filepath)) { directory.createdirectory(webrootpath + filepath); } //文件后缀 var fileextension = path.getextension(file.filename);//获取文件格式,拓展名 //判断文件大小 var filesize = file.length; if (filesize > 1024 * 1024 * 10) //10m todo:(1mb=1024x1024b) { continue; } //保存的文件名称(以名称和保存时间命名) var savename = file.filename.substring(0, file.filename.lastindexof('.')) + "_" + currentdate.tostring("hhmmss") + fileextension; //文件保存 using (var fs = system.io.file.create(webrootpath + filepath + savename)) { file.copyto(fs); fs.flush(); } //完整的文件路径 var completefilepath = path.combine(filepath, savename); uploadfilerequestlist.add(new uploadfilerequest() { filename = savename, filepath = completefilepath }); } } else { return new jsonresult(new { issuccess = false, resultmsg = "上传失败,未检测上传的文件信息~" }); } } catch (exception ex) { return new jsonresult(new { issuccess = false, resultmsg = "文件保存失败,异常信息为:" + ex.message }); } if (uploadfilerequestlist.any()) { return new jsonresult(new { issuccess = true, returnmsg = "上传成功", filepatharray = uploadfilerequestlist }); } else { return new jsonresult(new { issuccess = false, resultmsg = "网络打瞌睡了,文件保存失败" }); } } } /// <summary> /// 对文件上传响应模型 /// </summary> public class uploadfilerequest { /// <summary> /// 文件名称 /// </summary> public string filename { get; set; } /// <summary> /// 文件路径 /// </summary> public string filepath { get; set; } } }
到此这篇关于asp.net core单文件和多文件上传并保存到服务端的方法的文章就介绍到这了,更多相关asp.net core文件上传内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
作者:追逐时光
作者简介:一个热爱编程,善于分享,喜欢学习、探索、尝试新事物,新技术的程序猿。
上一篇: php如何比较两个浮点数是否相等详解