13
votes
4answers
1k views
Register file extensions / mime types in Linux
I'm developing a Linux application that has its own file format. I want my app to open when you double-click on those files.
How can I register a file extension and associate it with my application …
6
votes
8answers
539 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 …
5
votes
6answers
652 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 …
5
votes
7answers
2k views
Finding the default application for opening a particular file type on Windows
Hi there,
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 …
4
votes
4answers
181 views
How to identify binary and text files using Python ?
I need identify which file is binary and which is a text in a directory.
I tried use mimetypes but it isnt a good idea in my case because it cant identify all files mimes, and I have strangers ones …
4
votes
2answers
249 views
How do I determine the extension(s) associated with a MIME type in PHP?
Is there a quick and dirty mapping of MIME types to extensions in PHP that I can make use of?
3
votes
1answer
46 views
Associationg vim syntax with file extension
Hi,
how do I tell vim to use a certain syntax definition with a new file extension ?
Let's say I have files that are some kind of xml, but have a different extension, how do I let vim know that it …
3
votes
10answers
980 views
How can I determine a file’s true extension/type programatically?
Hey everyone,
I am working on a script that will process user uploads to the server, and as an added layer of security I'd like to know:
Is there a way to detect a file's true extension/file type, …
3
votes
4answers
439 views
Best way to recognize a filetype in php
What's the best way to discover a file's filetype within php? I heard that the browser may be tricked, so what's a better way of doing this?
3
votes
5answers
3k views
Filetype association with application (C#)
Hi,
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 …
2
votes
5answers
389 views
How to detemine the file type in Linux?
If someone sends me a document (.pdf,.doc,.xls, ppt, .ogg, mp3, png, etc) without the extension, how can I determine the file type? The /usr/bin/file command doesn't always guess right or it simply …
2
votes
4answers
688 views
Office 2007 File Type, Mime Types and Identifying Characters
Where could I find a list of mime types and identifying characters for office 2007 files. I have an upload form that is restricting uploads based on extension and identifying characters but I cannot …
1
vote
7answers
118 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"))
{
…
1
vote
3answers
118 views
Mercurial performing binary comparison for certain file types
I've recently started using Mercurial and when I reverted one of my .SQL files, Mercurial performed a binary comparison. This obviously limits the visibility of the changes that were made, as there is …
1
vote
2answers
309 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 …
