EaCloud 文件模块,封装基于 EaCloud 文件组件的功能实现。
$ dotnet add package EaCloud.Pack.FileEaCloud 文件模块,封装基于 EaCloud 文件组件的功能实现。
可按照如下配置方式使用:
EaCloud.Pack.File 程序集Install-Package EaCloud.Pack.File
appsettings.json 中添加如下配置节点{
"File": {
"Root": "D:\MyStaticFiles", //根目录。这应该是一条绝对的道路。例如:D:\MyStaticFiles
"RequestPath": "/StaticFiles", //映射到静态资源的相对请求路径。例如:/StaticFiles
"AllowOrigin": true, //是否允许跨域
"VersionEnabled": true, //是否启用版本管理(启用后删除、修改前的文件将作为历史版本归档)
"StoreMode": "Physical", //存储方式:DataBase-数据库、Physical-物理存储、DataStoreSvc-数据存储服务
"StoreSvcConnectionString": "", //数据存储服务连接字符串:例如:Azure Blob Storage {"DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=yyy"}
"StoreGroup": "ByYearMonth", //存储分组:NoGroup-不分组、ByYear-按年度分组、ByYearMonth-按年度月度分组、ByYearMonthDay-按年月日分组、ByExts-按扩展类型分组
"FileSizeLimit": 1073741824, //文件大小限制:0为不限制
"PermittedExts": ".txt,.png,.docx", //允许的上传类型:*为允许所有,多类型用“,”分隔
"DisallowedExts": ".exe,.bat", //阻止的上传类型:*为不限制,多类型用“,”分隔
}
}
3.解决文件上传大小限制,在项目中添加web.config文件
<?xml version="1.0" encoding="utf-8" ?> <configuration> <system.webServer> <security> <requestFiltering> <!-- 1 GB --> <requestLimits maxAllowedContentLength="1073741824" /> </requestFiltering> </security> </system.webServer> </configuration>