asp.net core的文件下载

1.简单的允许某mime类型下载 

Startup.cs文件中Configure()添加

app.UseStaticFiles(new StaticFileOptions {
               ContentTypeProvider=new FileExtensionContentTypeProvider(new Dictionary<string, string> {
                   {
                       ".apk","application/vnd.android.package-archive"
                   },
                   {
                      //其它它类型
                   }
               })
            });

  

 

posted @ 2017-09-28 08:57  奎宇工作室  阅读(405)  评论(0编辑  收藏  举报