In classic Asp we used the File.Type property to get the friendly name associated with a file type from the registry (e.g. "Text Document" for ".txt"). The FileInfo class which generally replaces the old COM object doesn't replicate this feature and so far I'm not having much success in my search of a replacement.

link|improve this question

possible duplicate of stackoverflow.com/questions/1437382/get-file-type-in-net – Helen Apr 18 '10 at 8:50
feedback

2 Answers

up vote 1 down vote accepted

I'm not aware of a method in the BCL, but you could easily read it from the Registry:

using System;
using Microsoft.Win32;

class Program
{
    static void Main(string[] args)
    {

        string extension = ".txt";
        string nicename = "";

        using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(extension))
        {
            if (key != null)
            {
                string filetype = key.GetValue(null) as string;
                using (RegistryKey keyType = Registry.ClassesRoot.OpenSubKey(filetype))
                {
                    if (keyType != null)
                    {
                        nicename = keyType.GetValue(null) as string;
                    }
                }
            }
        }
        Console.WriteLine(nicename);

    }
}

However, the method used in the link provided by Vladimir is to be preferred as it uses an API interface.

link|improve this answer
I was hoping to avoid reading the values manually but given the options I may may go this route – JohnL Oct 17 '09 at 21:06
feedback

I think it has been answered here:

http://stackoverflow.com/questions/1437382/get-file-type-in-c

link|improve this answer
Ah, I missed that one since I was focused on it being part of the FileSystemObject and assumed that aspect would be mentioned. I'd prefer to avoid the PInvoke but it looks like I might have to. Thanks. – JohnL Oct 17 '09 at 21:04
feedback

Your Answer

 
or
required, but never shown

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