如何在.NET中确定文件的内容类型?

时间:2009-02-11 17:02:47

标签: text encoding file-io binary streamreader

我有一个文件名,我必须能够从磁盘读取它并通过网络发送它的内容。我需要能够确定文件是文本还是二进制文件,因此我知道是使用StreamReader还是BinaryReader。我需要知道内容类型的另一个原因是因为如果它是二进制的,我必须在通过网络发送之前对数据进行MIME编码。我还希望能够告诉消费者内容类型是什么(包括编码,如果它是文本)。

谢谢!

3 个答案:

答案 0 :(得分:2)

filename extension提供了对文件内容类型的最佳提示。

这并不完美,但我已经使用了以下内容并取得了一些成功:

private static string GetContentTypeFromRegistry(string file)
{
    RegistryKey contentTypeKey = Registry.ClassesRoot.OpenSubKey(@"MIME\Database\Content Type");

    foreach (string keyName in contentTypeKey.GetSubKeyNames())
    {
        if (System.IO.Path.GetExtension(file).ToLower().CompareTo((string)contentTypeKey.OpenSubKey(keyName).GetValue("Extension")) == 0)
        {
            return keyName;
        }
    }

    return "unknown";
}

private static string GetFileExtensionFromRegistry(string contentType)
{
    RegistryKey contentTypeKey = Registry.ClassesRoot.OpenSubKey(@"MIME\Database\Content Type\" + contentType);

    if (contentTypeKey != null)
    {
        string extension = (string)contentTypeKey.GetValue("Extension");

        if (extension != null)
        {
            return extension;
        }
    }

    return String.Empty;
}

答案 1 :(得分:1)

您需要提前知道文件的类型,或者告诉文件的类型。如果您所做的只是通过网络发送文件,为什么不使用Stream.Write和Stream.Read方法呢?让服务的使用者确定文件类型。您不需要使用* Reader类,因为您没有解释服务器上的数据。

答案 2 :(得分:0)

你可以尝试这个免费的mime探测器库。 http://www.netomatix.com/Products/DocumentManagement/MimeDetector.aspx