Get MIME type from filename extension(从文件扩展名中获取 MIME 类型)
问题描述
How can I get the MIME type from a file extension?
For ASP.NET or other
The options were changed a bit in ASP.NET Core, here they are (credits):
new FileExtensionContentTypeProvider().TryGetContentType(fileName, out contentType);(vNext only)- Never tested, but looks like you can officially expand the mime types list via the exposed
Mappingsproperty.
- Never tested, but looks like you can officially expand the mime types list via the exposed
- Use the
MimeTypesNuGet package - Copy the
MimeMappingsfile from the reference source of the .NET Framework
For .NET Framework >= 4.5:
Use the System.Web.MimeMapping.GetMimeMapping method, that is part of the BCL in .NET Framework 4.5:
string mimeType = MimeMapping.GetMimeMapping(fileName);
If you need to add custom mappings you probably can use reflection to add mappings to the BCL MimeMapping class, it uses a custom dictionary that exposes this method, so you should invoke the following to add mappings (never tested tho, but should prob. work).
Anyway, when using reflection to add MIME types, be aware that since you're accessing a private field, its name might change or even be totally removed, so you should be extra cautious and add double checks and provide fail safe action for every step.
MimeMapping._mappingDictionary.AddMapping(string fileExtension, string mimeType)
这篇关于从文件扩展名中获取 MIME 类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从文件扩展名中获取 MIME 类型
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
