vote up 2 vote down star
1

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.

Thanks.

flag

3 Answers

vote up 6 vote down check

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

link|flag
I also found File::MMagic that does a similar work. – David Ameller Nov 17 '08 at 15:28
vote up -2 vote down

I finally opted to do something like

$res = `file a.txt`;
link|flag
vote up 2 vote down

Take a look at File::Magic

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

link|flag

Your Answer

Get an OpenID
or

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