Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

How do you make File::Find a bit less ugly?

by qazwart (Scribe)
on Jun 13, 2006 at 16:13 UTC ( [id://555084]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    [...]
    ...
    
    print "You've found " . join("\n\t", @fileList) . "\n";
    
  2. or download this
    while ($file  = File::Find::find(@directoryList)) {
        if (@wantThis) {
            print "Here's a file I want: $file\n";
        }
    }
    

Log In?
Username:
Password:

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

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

    No recent polls found