Tagged Questions

12
votes
5answers
8k views

Finding the default application for opening a particular file type on Windows

I'm developing an application targeting .NET Framework 2.0 using C# for which I need to be able to find the default application that is used for opening a particular file type. I know that, for ...
9
votes
5answers
14k views

How do I get common file type icons in C#?

As seen in This SO question on getting icons for common file types, it's quite possible for a windows program to get the icons for a registered file type using the C++ Shell API. These icons may or ...
6
votes
8answers
910 views

Is there an easy way to determine the type of a file without knowing the file's extension?

I have a table with a binary column which stores files of a number of different possible filetypes (PDF, BMP, JPEG, WAV, MP3, DOC, MPEG, AVI etc.), but no columns that store either the name or the ...
4
votes
2answers
344 views

Use the file types image of the operating system in C# .NET

Can I use somehow the filetype images from my operating system and display them in my application?
4
votes
4answers
8k views

Filetype association with application (C#)

I have a few questions related: 1) Is possible to make my program change filetype association but only when is running? Do you see anything wrong with this behavior? 2) The other option that I'm ...
3
votes
3answers
537 views

Registering file type and custom document icon in .NET

I have application that produces files. I would like to connect those files with application so that double-click on file launches my application. Everything works properly except for annoyance that ...
2
votes
2answers
1k views

How do I associate a custom default build action to a custom file type in Visual Studio?

I have a language service that I have built for a custom file type. In addition, I have created a custom target (build action) within my MSBuild project files. I am however unable to find any way to ...
1
vote
1answer
28 views

A good image format converter invokable from .NET?

I'm looking for a tool that can eat as many image formats as possible and convert them to jpg, something like FFmpeg but that's designed for images. I need it to be free (GPL is OK), preferrably open ...
1
vote
1answer
138 views

How to implement IDropTarget in an CSharp Application and register it for file types?

I'm implementing a small tool in C# which works on files. Because I'm lazy I want to register my tool on the file types in the registry to be able to simply open all my files from the explorer. ...
1
vote
2answers
119 views

How can I get the icon corresponding to a file's type in C#?

I need to get the icons associated with file types not the file name. I store in my database files with the type=> filename.type, but those files need not exist on the hard disk. Therefore I need to ...
0
votes
2answers
221 views

A solution to validate a file type using magic number in file signature (.NET)?

I want to validate a type of an uploaded file (suppose the file has incorrect extension). I figure it could be done by checking the magic number of file signature. Similarly, as it is done in unix. ...