Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: How to recognize Word and XLS files

by jmcnamara (Monsignor)
on Mar 06, 2012 at 11:32 UTC ( [id://958062]=note: print w/replies, xml ) Need Help??


in reply to How to recognize Word and XLS files

A better, and more complete way than the OLE version above, is using Image::ExifTool's ImageInfo. This also identifies the new Office file formats with or without extensions:

#!/usr/bin/perl use strict; use warnings; use Image::ExifTool 'ImageInfo'; my @files = ( 'test.xls', 'test.xlsx', 'test.doc', 'test.docx', 'test.ppt', 'test.pptx', ); for my $filename ( @files ) { my $info = ImageInfo( $filename ); printf( "%-20s = %s\n", $filename, $info->{FileType} ); } __END__ Output: $ perl exif_check.pl test.xls = XLS test.xlsx = XLSX test.doc = DOC test.docx = DOCX test.ppt = PPT test.pptx = PPTX

It might seem a little odd using Image::ExifTool for this but it has a large number of recognised formats.

--
John.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://958062]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (7)
As of 2024-04-24 17:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found