How can i get the MIME type from an extension? C# ASP.NET
feedback
|
|
You can find that information in the registry. For instance, the MIME type for .pdf file can be found in the key
| |||||||||||||
feedback
|
|
I've found many mime types my application uses are not in the default Windows registry and others are in the registry but not in the list included with IIS. I've compiled a list from these locations and added a few others that we use.
| |||||||
feedback
|
|
You can use this helper function mentioned here.
| |||
|
feedback
|
|
I've written a program to fetch and convert the Apache mime.types file to a C# https://github.com/cymen/ApacheMimeTypesToDotNet The actual output is this file: https://github.com/cymen/ApacheMimeTypesToDotNet/blob/master/ApacheMimeTypes.cs | |||
|
feedback
|
|
You could use the table provided from Apache's httpd. It should be trivial to map this into a function, dictionary, list, etc. Also, as seen here, extension->mime type is not necessarily a function. There may be multiple common MIME types per file extension, so you should look at the requirements of your application, and see why you care about MIME types, what you want "to do" with them, etc. Can you use file extensions to key the same behavior? Do you need to read the first few bytes of a file to determine its MIME type as well? | ||||
|
feedback
|