m.qayyum
m.qayyum

Reputation: 411

How to get mime type of online files using c#

I am developing a url sniffer and i wanted to filter results as i wanted to grab only media files by checking their mime types. I am searching over google for two days now but can't find any correct solution.

Upvotes: 0

Views: 445

Answers (1)

NKCSS
NKCSS

Reputation: 2746

IIS just looks at the file extension of a file, and looks it up in an internal database (you can Create/Read/Update/Delete entries).

This isn't 100% accurate (extension doesn't have to match the content), but going a step further would be overkill.

Here's more on mime types.

Upvotes: 1

Related Questions