Posted on 2009-03-22 07:59:21-07 by maehrus in response to 10264
Re: Please help the newbie :)
I always use the File::Find module to so. http://search.cpan.org/~nwclark/perl-5.8.5/lib/File/Find.pm use File::Find; find(\&wanted, @directories_to_search); sub wanted { if (/\.jpg$) { ...do something with exif ... } #just do this if $_ is a jpeg file } Hope this hint is helpful Kind regards Andreas
Direct Responses: Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.