Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: tree backup script - file type problem

by davido (Cardinal)
on Sep 07, 2004 at 23:44 UTC ( [id://389243]=note: print w/replies, xml ) Need Help??


in reply to tree backup script - file type problem

Here's a simple file-type reporter based on File::Type, and of course our wierd friend, File::Find:

use strict; use warnings; use File::Type; use File::Find; find( sub { -f && print "$_\t => ", File::Type->new()->checktype_filename($_), $/ for $File::Find::name; }, scalar(@ARGV) ? @ARGV : './' );

It's a little concise; I was trying to have some fun with it. One hint: The 'for' clause is used to alias $_ to $File::Find::name so that I wouldn't have to keep typing it all over the place. Also, since I only use $obj->checktype_filename() once, I chose to not store the object's ref in a variable, but rather, just dereference the return value of File::Type->new(). ...a couple of golf tricks that didn't seem to hurt readability too much.


Dave

Replies are listed 'Best First'.
Re^2: tree backup script - file type problem
by barathbr (Scribe) on Sep 09, 2004 at 21:05 UTC
    Thanks david, I will just try it out with the snippet that you have written here. I think this in tandem with the netresource module should just do the job for me ...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-19 06:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found