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, not file system classifications, such as directory, file, or socket.

link|improve this question
feedback

9 Answers

There is a ruby binding to libmagic that does what you need. This is available as a gem:

gem install ruby-filemagic

The documentation seems a little thin, but this should get you started:

$ irb 
irb(main):001:0> require 'filemagic' 
=> true
irb(main):002:0> fm = FileMagic.new
=> #<FileMagic:0x7fd4afb0>
irb(main):003:0> fm.file('foo.zip') 
=> "Zip archive data, at least v2.0 to extract"
irb(main):004:0>
link|improve this answer
According to grub.ath.cx/filemagic/CHANGELOG this gem doesn't seem to be actively maintained. – Lars Haugseth Sep 11 '09 at 15:18
6  
I'm happy to report that this gem is once again being actively maintained github.com/blackwinter/ruby-filemagic – Martin Carpenter Nov 26 '10 at 17:24
feedback

If you're on a Unix machine try this:

mimetype = `file -Ib #{path}`.gsub(/\n/,"")

I'm not aware of any pure Ruby solutions that work as reliably as 'file'.

Edited to add: depending what OS you are running you may need to use 'i' instead of 'I' to get file to return a mime-type.

link|improve this answer
To prevent nasty hackery, try using popen: IO.popen(["file", "--brief", "--mime-type", path], in: :close, err: :close).read.chomp – sj26 May 22 at 2:11
feedback

You could give shared-mime a try (gem install shared-mime-info). Requires the use ofthe Freedesktop shared-mime-info library, but does both filename/extension checks as well as "magic" checks... tried giving it a whirl myself just now but I don't have the freedesktop shared-mime-info database installed and have to do "real work," unfortunately, but it might be what you're looking for.

link|improve this answer
feedback

I found shelling out to be the most reliable. For compatibility on both Mac OS X and Ubuntu Linux I used:

file --mime -b myvideo.mp4
video/mp4; charset=binary

Ubuntu also prints video codec information if it can which is pretty cool:

file -b myvideo.mp4
ISO Media, MPEG v4 system, version 2

link|improve this answer
feedback

I recently found mimetype-fu. It seems to be the easiest reliable solution to get a file's mime type. The only caveat is that on a Windows machine it only uses the file extension; on Linux/OS X/Other Unix-y systems it works great.

link|improve this answer
feedback

The best I found so far:

http://bogomips.org/mahoro.git/

link|improve this answer
feedback

Pure Ruby solution using magic bytes and returning a symbol for the matching type:

https://github.com/SixArm/sixarm_ruby_magic_number_type

I wrote it, so if you have suggestions, let me know.

link|improve this answer
feedback

You could give this a go.

link|improve this answer
3  
From Readme.txt: "The identification of MIME content type is based on a file‘s filename extensions". OP explicitly requested a method based on content analysis, not filename extension. – Martin Carpenter May 23 '09 at 14:37
feedback

The ruby gem is well. mime-types for ruby

link|improve this answer
This gem uses file extention to determine the type, not the content. – Lars Haugseth Sep 11 '09 at 15:13
Thanks for your response. This method is not a good idea. – Qianjigui Sep 14 '09 at 3:15
feedback

Your Answer

 
or
required, but never shown