Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a better way of setting mimetypes in C# than the one I am trying to do thanks in advance.

static String MimeType(string filePath)
{
  String ret = null;
  FileInfo file = new FileInfo(filePath);

  if (file.Extension.ToUpper() == ".PDF")
  {
    ret = "application/pdf";
  }
  else if (file.Extension.ToUpper() == ".JPG" || file.Extension.ToUpper() == ".JPEG")
  {
    ret = "image/jpeg";
  }
  else if (file.Extension.ToUpper() == ".PNG")
  {
    ret = "image/png";
  }
  else if (file.Extension.ToUpper() == ".GIF")
  {
    ret = "image/gif";
  }
  else if (file.Extension.ToUpper() == ".TIFF" || file.Extension.ToUpper() == ".TIF")
  {
    ret = "image/tiff";
  }
  else
  {
    ret = "image/" + file.Extension.Replace(".", "");
  }

  return ret;
}
share|improve this question
1  
I still don't understand why the large collection of MIME types which MS uses in System.Web hasn't been made available my making the internal class public... everyone is coding their own method to get the mime type of a file name and only very few are actually doing it right. – Lucero Jun 24 '10 at 16:05
1  
1  
There's also [Using .NET, how can you find the mime type of a file based on the file signature not the extension. ](stackoverflow.com/questions/58510/…) – R0MANARMY Jun 24 '10 at 16:12

3 Answers

up vote 10 down vote accepted

I got this from this blogpost:

private string GetMimeType (string fileName)
{
    string mimeType = "application/unknown";
    string ext = System.IO.Path.GetExtension(fileName).ToLower();
    Microsoft.Win32.RegistryKey regKey = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(ext);
    if (regKey != null && regKey.GetValue("Content Type") != null)
    mimeType = regKey.GetValue("Content Type").ToString();
    return mimeType;
}
share|improve this answer
2  
I was going to suggest the registry. However if you're running in partial trust mode I think you need to explicitly grant registry access else it'll be refused. I'd probably also cache the requests in your app rather than query every time but that's more from general unease of calling out to the registry rather than hard data. Maybe also worth point out: rather than app/unknown, IIS will refuse to serve a file if there's no registry Content Type. – Rup Jun 24 '10 at 16:12

If you don't have registry access or don't want to use the registry, you could always use a Dictionary for that.

Dictionary<string,string> mimeTypes = new Dictionary<string,string>() { 
 { ".PDF","application/pdf"},
 { ".JPG", "image/jpeg" },
 { ".JPEG", "image/jpeg" } }; // and so on

Then use:

string mimeType = mimeTypes[fileExtension];

In addition, you could store these mappings in an XML file and cache them with a file dependency, rather than keeping them in your code.

share|improve this answer
1  
Still needs to be hardcoded though, I think the question is about using an existing API rather than having yet another implementation. – R0MANARMY Jun 24 '10 at 16:08

A Dictionary<String,String> may prove to be clearer.

private static Dictionary<String, String> mtypes = new Dictionary<string, string> {
        {".PDF", "application/pdf" },
        {".JPG", "image/jpeg"},
        {".PNG", "image/png"},
        {".GIF", "image/gif"},
        {".TIFF","image/tiff"},
        {".TIF", "image/tiff"}
    };

static String MimeType(String filePath)
{
    System.IO.FileInfo file = new System.IO.FileInfo(filePath);
    String filetype = file.Extension.ToUpper();
    if(mtypes.Keys.Contains<String>(filetype))
        return mtypes[filetype];
    return "image/" + filetype.Replace(".", "").ToLower();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.