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.
feedback
|
|
I'm not aware of a method in the BCL, but you could easily read it from the Registry:
However, the method used in the link provided by Vladimir is to be preferred as it uses an API interface. | |||
feedback
|
|
I think it has been answered here: http://stackoverflow.com/questions/1437382/get-file-type-in-c | |||
feedback
|