Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^3: How do I recursively process files through directories

by Aristotle (Chancellor)
on Oct 04, 2003 at 22:59 UTC ( [id://296601]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @stuff;
    
    ...
    }
    
    find(\&wanted, $mp3_dir);
    
  2. or download this
    my @stuff;
    
    ...
        push @stuff, $File::Find::name
            if -f && ! -d && m/\.mp3$/i;
    }, $mp3_dir);
    
  3. or download this
    find(\&wanted, $mp3_dir);
                                                                          
    +          
    ...
        }
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (7)
As of 2024-03-29 09:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found