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 ...
10
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
7answers
2k views
Find out the real file type
I am working on an ASP web page that handles file uploads. Only certain types of files are allowed to be uploaded, like .XLS, .XML, .CSV, .TXT, .PDF, .PPT, etc.
I have to decide if a file really ...
6
votes
8answers
919 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
366 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
3answers
1k views
How do I get File Type Information based on extention? (not MIME) in c#
How do I get the general File type description based on extention like Explorer does it? So not MIME but the information that the end-user sees, like.
.doc = Microsoft Office Word 97 - 2003 Document
...
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
2answers
412 views
Shell Integrate in Windows for a Specific File Type With C#
So I searched for a guide of how to shell integrate your application (add it to the right click menu) with C#, but I couldn't find how to do that only for a specific file type. I know it is possible ...
3
votes
5answers
816 views
Programatically find out a file type by looking its binary content. Possible?
I have a c# component that will recieve a file of the following types
.doc, .pdf, .xls, .rtf
These will be sent by the calling siebel legacy app as a filestream.
So...
[LegacyApp] >> {Binary file ...
3
votes
3answers
557 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 ...
1
vote
1answer
144 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
125 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 ...
1
vote
1answer
209 views
C# proper way for file associations
I've been looking for a proper way to get file associations working on WinXP and above. The association should be replaced if it already exists. The application I've developed always run in admin ...
1
vote
1answer
103 views
Get file type in Mono
How do i get the file type in Mono? i.e. "*.txt" => "Text Document", "*.jpg" => "JPEG Image". Similar to what SHFILEINFO.szTypeName returns with P/Invoke on Windows.
1
vote
2answers
395 views
Trying to compile x64 app on linux with mono gives PE32Plus error?
the full error is
Error CS8088: Your .NET Runtime does not support `PE32Plus'.
Please use the latest Mono runtime instead. (CS8088) (test)
this is on a x86_64 linux system with mono and ...
1
vote
2answers
127 views
file type using filecontent
I have filecontent in a byte array, and how to find the type of this file from this byte array content?
Like .doc, .docx, .jpg?
Thanks
1
vote
7answers
375 views
When checking if a file is MP3 is checking the filename string with an .EndsWith good enough?
I'm doing this:
private void LoadSoundFile()
{
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
if (openFileDialog1.FileName.EndsWith(".mp3"))
{
...
0
votes
1answer
316 views
How Get File Name from URL ,C#/.NET?
How can I get a file name if the address ends with
/download/file/36fdd4aebda3819d329640ce75755657bc0c0d4c6811432b3bb6aac321dc78d/ ?
This is the simplified code example,
void ...
0
votes
1answer
155 views
Understanding Icon Indicies in a C# Application
I have a C# application that needs to define an icon for the project files that the user can save and load when using the application. I know how to set up the registry entries but what I am ...
0
votes
0answers
228 views
Is there any way to programmatically set the “UserChoice” registry key to take over a file type association?
I have been trying to find a way to change the default file association for a specific file extension in windows 7. I have an app that is used to view .tif files that I want to prompt th user if its ...
0
votes
3answers
816 views
Is it worth it to lookup the default application in the registry when opening a file from a C# application?
I'm building an application (a side project which is likely to enlist the help of the stackoverflow community on more than one occasion) which will need to open a variety of file types (i.e. open Word ...
0
votes
3answers
268 views
List all applications that handle a specified file type
Is it possible to list all the applications on a machine that can open a specific file type, using only the files extension? for example if I have a text file (.txt), I want a list of all ...