up vote 4 down vote favorite
1
share [g+] share [fb]

I'm looking for a module or some way to obtain the information of the content of a file.

The same that the linux "file" command does, but in Perl language.

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Have a look at the File::Magic module on the CPAN.

link|improve this answer
I also found File::MMagic that does a similar work. – David Ameller Nov 17 '08 at 15:28
feedback

Take a look at File::Magic

http://search.cpan.org/~rehsack/File-Magic-0.01/

link|improve this answer
feedback

I finally opted to do something like

$res = `file a.txt`;
link|improve this answer
Seems like a perfectly reasonable and expeditious approach. However, you are reliant on your system magic file that way. – tchrist Aug 25 '11 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.