File Extension to MIME Type Web Service?

2019-03-10 03:01发布

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

8条回答
狗以群分
2楼-- · 2019-03-10 03:49

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

查看更多
淡お忘
3楼-- · 2019-03-10 03:53

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

查看更多
登录 后发表回答