I am in a Windows Desktop application and I have a data stream and a mime type in the database. Is there a better way than writing it to a temp folder and launching the default editor for it?
If I have to use the temp folder how can I get the file extension from the MIME type in a C# Windows Desktop application?
Lookup the MIME type in
HKEY_CLASSES_ROOT\MIME\Database\Content Typeto find out the corresponding file extension and go from there. Some starter links:If that is not enough, maybe libmagic (used by the
filecommand line tool) or its database can be of use to you, even though it is quite UNIX:y.