.net core 2.0 虚拟目录下载 Android Apk 等文件
Posted 在水一方
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.net core 2.0 虚拟目录下载 Android Apk 等文件相关的知识,希望对你有一定的参考价值。
当android 文件 Apk 放在Asp.net core wwwroot 虚拟目录下面、访问是 404,设置Content-Type类型
app.UseStaticFiles(); //设置实际目录与虚拟目录 app.UseStaticFiles(new StaticFileOptions { FileProvider = new PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(), @"wwwroot/Files")), RequestPath = new PathString("/jfiles"), //设置Android APK 下载 ContentTypeProvider = new FileExtensionContentTypeProvider(new Dictionary<string, string> { { ".apk","application/vnd.android.package-archive"}, { ".nupkg","application/zip"} }) });
以上是关于.net core 2.0 虚拟目录下载 Android Apk 等文件的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 asp.net core 2.0 Razor 页面执行下载操作
.net core 2.0 Razor pages VS 2017表格数据下载
我无法在 asp.net core 2.0 razor pages 中执行下载操作
.net core 2.0学习记录:搭建一个.Net Core网站项目