up vote 9 down vote favorite
7
share [g+] share [fb]

Are there any web services which will allow me to provide a file extension and it would return a list of possible MIME types?

For example:

http://mimetype.com/getMime/doc

Which could return:

application/msword,application/docappl/text,application/vnd.msword,application/vnd.ms-word,application/winword,application/word,application/x-msw6,application/x-msword

I don't want to use Urlmon.dll and I would prefer not having to keep my own list up-to-date.

Thanks

link|improve this question

feedback

10 Answers

up vote 4 down vote accepted
+400

The only thing I could imagine would be parsing the list which comes with the apache server mime.types. The list is maintained by The Apache Software Foundation and depends on www.iana.org

link|improve this answer
feedback

I just created this as part of my mimetype <-> icon service

http://stdicon.com/

For example :

http://stdicon.com/ext/html

It runs on appengine so it should have high availability.

link|improve this answer
Great service and thank you! – Nirmal Dec 13 '10 at 18:58
May be I could sponsor the domain name? – Nirmal Dec 13 '10 at 19:50
+1 for providing a nice service – wsanville Mar 16 '11 at 17:29
feedback

Though its not exactly what you are asking for, this information is available via search by format in the PRONOM registry. The result is more fine-grained than MIME types, but you can get MIME info if available for the results (e.g. here, in the 'identifiers' section). There is also the DROID tool available to access this information via GUI, Java API or command line interface.

link|improve this answer
feedback

Sorry that I don't have a webservice for the task on hand, but you could use the fileext page and maybe parse the response if you can query the extension programmatically. Maybe a first step in the right direction.

link|improve this answer
feedback

This webservice could be very simple, a small DB / in memory store which could be as simple as a Dictionary<String, String> and just do a key lookup and return the result.

The first dataset could be (for example) based on http://www.webmaster-toolkit.com/mime-types.shtml.

The problem would probably be the hosting of such a webservice.

link|improve this answer
This list you mention on webmaster's toolkit, is very very incomplete... – Keltia Jan 30 '09 at 10:54
@keltia: true, other data sources are already mentioned. I was just explaining that the web service itself would not be a problem, even the data must be online somewhere, its about hosting the webservice somewhere. – Davy Landman Jan 30 '09 at 11:14
feedback

I don't know if there is a web service that would do this, but the libmagic library (http://en.wikipedia.org/wiki/Libmagic) is used for identifying filetypes and might be helpful for you.

link|improve this answer
feedback

The only thing that comes to mind is to parse output from http://www.file-extensions.org/

link|improve this answer
feedback

It won't give you the MIME type, but the good olde' Microsoft File Association Web Service could still help you. You access it this way:

http://shell.windows.com/fileassoc/0409/xml/redir.asp?Ext=xls

where 0409 means English (US) and xls is the file extension. On the plus side, it will be there and constantly updated... well, until Microsoft decides to pull the plug. Which can happen any time.

link|improve this answer
feedback

A list of MIME types surely won't change that much?

link|improve this answer
feedback

Is a web service really more useful than a library? I suppose it could be kept up to date, but otherwise what's the benefit? Do you envisage a lot of use for this?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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