我有一个包含文件数据的byte []。数组可以包含几种不同文件类型的数据,如xml,jpg,html,csv等。
我需要将该文件保存在磁盘中。
我正在寻找一个c#代码,以便在您了解内容类型时查找正确的文件扩展名,但不确定文件扩展名是什么?
答案 0 :(得分:9)
http://cyotek.com/article/display/mime-types-and-file-extensions有一个代码片段,主要是在HKEY_CLASSES_ROOT\MIME\Database\Content Type\<mime type>
答案 1 :(得分:2)
也许这个转换器代码可以提供帮助:
private static ConcurrentDictionary<string, string> MimeTypeToExtension = new ConcurrentDictionary<string, string>();
private static ConcurrentDictionary<string, string> ExtensionToMimeType = new ConcurrentDictionary<string, string>();
public static string ConvertMimeTypeToExtension(string mimeType)
{
if (string.IsNullOrWhiteSpace(mimeType))
throw new ArgumentNullException("mimeType");
string key = string.Format(@"MIME\Database\Content Type\{0}", mimeType);
string result;
if (MimeTypeToExtension.TryGetValue(key, out result))
return result;
RegistryKey regKey;
object value;
regKey = Registry.ClassesRoot.OpenSubKey(key, false);
value = regKey != null ? regKey.GetValue("Extension", null) : null;
result = value != null ? value.ToString() : string.Empty;
MimeTypeToExtension[key] = result;
return result;
}
public static string ConvertExtensionToMimeType(string extension)
{
if (string.IsNullOrWhiteSpace(extension))
throw new ArgumentNullException("extension");
if (!extension.StartsWith("."))
extension = "." + extension;
string result;
if (ExtensionToMimeType.TryGetValue(extension, out result))
return result;
RegistryKey regKey;
object value;
regKey = Registry.ClassesRoot.OpenSubKey(extension, false);
value = regKey != null ? regKey.GetValue("Content Type", null) : null;
result = value != null ? value.ToString() : string.Empty;
ExtensionToMimeType[extension] = result;
return result;
}
这个想法的起源来自这里: Snippet: Mime types and file extensions