Get ContentType from files
by Rizo on mar.15, 2012, under Developing
I love HttpPostedFileBase! Why? Because it gives me the contenttype from files! But what about the files that I have on my disc and I need to get the ContentType? Unfortunely, you’ll either have to have a huge list with all extensions and their contenttypes which is a major pain. There’re some open source .dlls that will give you this aswell but I don’t fancy using that for such a little thing.
But I really do need to get the ContentType! So, after some searching around I found this rather comfortable way to get the ContentType without having a huge list or getting another dll to do it for me.
[sourcecode lang=”c#”]
private string GetContentType(string fileName)
{
string strcontentType = ”application/octetstream”;
string ext = Path.GetExtension(fileName).ToLower();
Microsoft.Win32.RegistryKey registryKey = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(ext);
if (registryKey != null && registryKey.GetValue(”Content Type”) != null)
strcontentType = registryKey.GetValue(”Content Type”).ToString();
return strcontentType;
}
[/sourcecode]
So, what is the code above? Well.. I said it was comfortable, not the best 🙂 We do have to check the registry to get our contenttypes and that’s pretty much the same as having an entire list, the difference is that we don’t have to maintain it nor create it (if we can’t find one that has all the extensions, and then you have to think about .ppt and .pptx and so forth)
If we, for some reason, don’t get a valid contentype, we’ll just use ”application/octetstream” to return a binary contenttype.
A quick and dirty post, on a quick and dirty fix to get contenttype! 😀
22 Trackbacks / Pingbacks for this entry
oktober 7th, 2023 on 00:21
… [Trackback]
[…] Read More Information here on that Topic: from-rizo.se/get-contenttype-from-files/ […]
oktober 16th, 2023 on 19:08
… [Trackback]
[…] Read More Info here to that Topic: from-rizo.se/get-contenttype-from-files/ […]
december 10th, 2023 on 03:34
… [Trackback]
[…] Info on that Topic: from-rizo.se/get-contenttype-from-files/ […]
februari 21st, 2024 on 01:50
… [Trackback]
[…] Here you will find 10281 more Information to that Topic: from-rizo.se/get-contenttype-from-files/ […]
maj 2nd, 2024 on 03:48
… [Trackback]
[…] Read More on that Topic: from-rizo.se/get-contenttype-from-files/ […]
maj 3rd, 2024 on 23:50
… [Trackback]
[…] Read More here on that Topic: from-rizo.se/get-contenttype-from-files/ […]
maj 6th, 2024 on 00:45
… [Trackback]
[…] Find More on on that Topic: from-rizo.se/get-contenttype-from-files/ […]
maj 27th, 2024 on 00:18
… [Trackback]
[…] Find More Information here on that Topic: from-rizo.se/get-contenttype-from-files/ […]
juli 8th, 2024 on 13:38
… [Trackback]
[…] Info on that Topic: from-rizo.se/get-contenttype-from-files/ […]
juli 8th, 2024 on 23:40
… [Trackback]
[…] There you can find 95503 additional Info on that Topic: from-rizo.se/get-contenttype-from-files/ […]
juli 10th, 2024 on 00:06
… [Trackback]
[…] Here you will find 78989 additional Information to that Topic: from-rizo.se/get-contenttype-from-files/ […]
augusti 30th, 2024 on 22:09
… [Trackback]
[…] Find More to that Topic: from-rizo.se/get-contenttype-from-files/ […]
september 4th, 2024 on 00:41
… [Trackback]
[…] Find More Info here on that Topic: from-rizo.se/get-contenttype-from-files/ […]
september 6th, 2024 on 07:59
… [Trackback]
[…] Find More Information here to that Topic: from-rizo.se/get-contenttype-from-files/ […]
september 17th, 2024 on 06:49
… [Trackback]
[…] Read More Information here to that Topic: from-rizo.se/get-contenttype-from-files/ […]
september 17th, 2024 on 14:58
… [Trackback]
[…] Information on that Topic: from-rizo.se/get-contenttype-from-files/ […]
september 26th, 2024 on 08:35
… [Trackback]
[…] Info to that Topic: from-rizo.se/get-contenttype-from-files/ […]
september 28th, 2024 on 02:45
… [Trackback]
[…] Find More Information here to that Topic: from-rizo.se/get-contenttype-from-files/ […]
oktober 13th, 2024 on 08:30
… [Trackback]
[…] Read More Information here on that Topic: from-rizo.se/get-contenttype-from-files/ […]
oktober 20th, 2024 on 23:24
… [Trackback]
[…] Here you can find 31940 additional Information to that Topic: from-rizo.se/get-contenttype-from-files/ […]
oktober 22nd, 2024 on 04:03
… [Trackback]
[…] Information on that Topic: from-rizo.se/get-contenttype-from-files/ […]
oktober 23rd, 2024 on 04:19
… [Trackback]
[…] Read More here on that Topic: from-rizo.se/get-contenttype-from-files/ […]