Tagged Questions

The type of a file, as characterized by the format of the data it contains, or its use case. Related tags: [file-format] and [file-extension]

learn more… | top users | synonyms (2)

24
votes
4answers
6k 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 ...
22
votes
8answers
12k views

Determine file type in Ruby

How does one reliably determine a file's type? File extension analysis is not acceptable. There must be a rubyesque tool similar to the UNIX file(1) command? This is regarding MIME or content type, ...
13
votes
2answers
111 views

How to make Vim detect filetype from shebang line?

Sometimes I write scripts without any filename extension. For example: #!/usr/bin/env node console.log('hello world!'); I hope that Vim can detect the filetype from the shebang line (e.g. ...
13
votes
4answers
471 views

Android: Issue with acceptable file types via bluetooth

I've got a problem with pushing files to my Nexus One. It seems to me that there is only a small selection of file types that are accepted by my phone (such as jpg, gif and so on). I recently tried ...
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 ...
11
votes
9answers
963 views

How do I tell if someone's faking a filetype? (PHP)

I'm programming something that allows users to store documents and pictures on a webserver, to be stored and retrieved later. When users upload files to my server, PHP tells me what filetype it is ...
10
votes
1answer
2k views

How to associate application with existing file types using WiX installer?

related to this: http://stackoverflow.com/questions/138550/how-to-register-file-types-extensions-with-a-wix-installer but not a duplicate. I need to handle existing file types (.jpg files). I do not ...
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 ...
8
votes
4answers
650 views

How to obtain a list of directories within a directory, like list.files(), but instead “list.dirs()”

This may be a very easy question for someone - I am able to use list.files() to obtain a list of files in a given directory, but if I want to get a list of directories, how would I do this? Is it ...
8
votes
3answers
187 views

Where does Windows store it's “Open With” settings?

I'm trying to programatically check file associations (for example .jnlp files). I keep reading that "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\JNLPFile\Shell\Open\Command" is the place to check. However, ...
8
votes
1answer
2k views

Best way to organize filetype settings in .vim and .vimrc?

I'm going through my vim dotfiles to tidy them up. I've noticed that through time I've added various filetype specific settings in various inconsistent ways. Let's suppose I'm customizing for Python: ...
8
votes
1answer
1k views

Multiple file types in vim

When I am working on a PHP file for example the default filetype is php. This makes sense, however when that PHP file has HTML as well the filetype is still only php. For some plugins that means that ...
7
votes
5answers
1k views

Which Visual C++ file types should be committed to version control?

Which Visual Studio \ Visual C++ file types should be committed to version control? In my project I have the following file types: aps cpp exe filters h ico idb ipch lastbuildstate lib log manifest ...
7
votes
1answer
1k views

svn diff: file marked as binary type

I'm doing an svn diff on one of my files and svn is detecting it as a binary type. The file is readable plain text and I would like to be able to get a diff of this file. How do I tell SVN that this ...
7
votes
10answers
4k views

How can I determine a file's true extension/type programatically?

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, and ensure that ...
6
votes
2answers
1k 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?
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
909 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
2answers
2k views

register new file type in android

I want to write simple STL (geometrical data file) viewer application on Android, but I'm not able to make recognize a format to the system. What I wrote in my app manifest file is: ...
5
votes
2answers
1k views

java library to find the mime type from file content

I am searching for a java library which tells you the mime type by looking at the file content(byte array). I found this project using jmimemagic and it no longer supports newer file types (eg. MS ...
5
votes
3answers
220 views

How do I define an exception for line breaks in Vim?

I edit files in Vim were I log terminal command lines along with descriptions of what I did. All my command lines start with $, so my files look like this: This is a description of what this command ...
5
votes
2answers
5k views

Full path from file input using jQuery

When I call val() on an input with type="file" I only get file name rather than full path. How can I get full path?
5
votes
4answers
644 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 ...
5
votes
3answers
526 views

Very strange behavior with Vim syntax and filetype detection

I have a file, called WrongFileTypeDetection.R, containing the following text: # This file is sometimes wrongly detected as a conf file I also have two versions of _vimrc, that I would have thought ...
4
votes
1answer
40 views

Identifying file type in Windows

Linux operating system identifies files by looking at its magic number at the starting of the header. How does windows do it ? Does it also have some kind of magic number mechanism or does it only ...
4
votes
1answer
78 views

Is it okay to rely on MIME TYPE when verifying using JavaScript if the file uploaded is of audio, video or image type?

I know that from security standpoint this is not safe. But I intend to use the javascript code for convenience. So just as a first pass. My goal is to avoid any false-positives i.e. it is fine if a ...
4
votes
2answers
341 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
2answers
273 views

What file type starts with BOSS 7?

I am looking at some files generated in the early 90s. One of them seems to hold references to data packed in some binary format in a number of large files. The first six bytes of the file are 0x42 ...
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
1k 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?
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
49 views

What exactly happens when you change a file type in vim?

If I have an apache file in /etc/apache2/sites-available/www.example.com and I set its filetype like so :set filetype=apache What does that do? Does that change the file at all? Is it only ...
3
votes
1answer
122 views

How to accurately determine mime data from a file?

I'm adding some functionality to a program so that I can accurately determine the files type by reading the MIME data. I've already tried a few methods: Method 1: javax.activation.FileDataSource ...
3
votes
1answer
94 views

Datafiletype (custom) wont open im my app

I have made my own filetype (.mmd). This filetype i have saved some data in, and would like, when a file of this type is selected to have it open in my app, in the subactivity called openMeasurement. ...
3
votes
4answers
92 views

filetype doesnt works in php

How to get file type in php? I had tried following codes $attachment_path = "/views/default/helpcentre/check_attachment/wildryan.jpg"; $file_type = filetype($attachment_path); $mime_type ...
3
votes
3answers
364 views

rails 3.0 and carrierwave how to prevent version creation for non-image type

I'm struggling a bit trying to achieve something that appeared simple initially to me. In the context of a rails 3.0 app using carrierwave. The user must be able do download any type of document ...
3
votes
2answers
380 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
1answer
653 views

Grails file upload - how to recognize file and/or content type?

I'm a Grails beginner, so please be patient with me. Currently I'm having hard times manipulating file uploads. As far as I understand using request.getFile() I can easily get the stream of bytes. But ...
3
votes
2answers
295 views

Set default file type to .cc in Eclipse

By default Eclipse (CDT) uses .cpp file extension for C++ files. I would like it to use .cc (and .hh) extensions instead but I cannot find such an option anywhere. edit: To be precise, it creates a ...
3
votes
1answer
378 views

Custom Filetype in Android not working

I'm currently writing an Android App and it should open Files with the ending .meetme Actually it should open them directly from Gmail, but I don't think that is possible. This is the Code of my ...
3
votes
1answer
178 views

Is there a collection of consistent and nice document icons (e.g. HTML, ZIP, PDF)?

I am looking for a collection of consistent, nice looking, system neutral document icons. For example, if you check the entry of PDF file format or the ZIP file format in wikipedia you find at right ...
3
votes
5answers
757 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
6answers
1k views

How can I get the Name of the Program associated with a file extension using Delphi?

I need to get the name of the program currently associated with a file extension for the current user. If you right-click on a file and select properties, then what I need is the program name that is ...
3
votes
3answers
2k views

How to use the xdg-mime command

Can someone provide example on how to use (with GNOME Ubuntu) the XDG-MIME command? I'm struggling to get anything working even with the docs. For example if I want to register the extension .mfe ...
3
votes
3answers
612 views

Indicate programming language in a file without extension

When writing executable scripts, and declarative configuration files that use a common language (eg. Python), I often find it undesirable to add an extension to the file name. Many syntax-highlighting ...
3
votes
0answers
523 views

Associationg vim syntax with file extension

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 should ...
3
votes
3answers
535 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 ...
3
votes
2answers
884 views

File type indicator, sys/stat.h st_mode regular file code value

I am trying to identify file types for directory entries (Windows Unix etc..). In sys/stat.h the high order nybble of the st_mode word have the coded values: #define S_IFDIR 0x4000 /* directory */ ...
3
votes
4answers
2k views

What are the most common virus file types currently circulating?

I am working on a project that will involve file upload to a server. I am interested in understanding what kinds of files virus writers currently tend to target. I am aware of the following threads: ...
3
votes
4answers
873 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 ...

1 2 3 4 5