gpt4 book ai didi

c# - 与 MimeMapping.GetMimeMapping 相反?

转载 作者:行者123 更新时间:2023-11-30 22:09:47 24 4
gpt4 key购买 nike

存在MimeMapping.GetMimeMapping(string filename)

是否存在一个 .Net 函数,它执行“相反”的操作。这需要一个 MIME 字符串并返回文件类型扩展名?

最佳答案

您可以阅读注册表以获取该信息。

var mapping = Microsoft.Win32.Registry.ClassesRoot.GetSubKeyNames()
.Select(key => new
{
Key = key,
ContentType = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(key).GetValue("Content Type")
})
.Where(x => x.ContentType != null)
.ToLookup(x => x.ContentType, x => x.Key);

Console.WriteLine(String.Join(";",mapping["image/jpeg"]));

关于c# - 与 MimeMapping.GetMimeMapping 相反?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21329898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com