Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Array Normalization of File::DirWalk

by jdporter (Paladin)
on Feb 23, 2007 at 12:26 UTC ( [id://601732]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    for my $directory ( @directory )
    {
    ...
        $dw->setDepth( $depth + 1 );
        $dw->walk( $directory );
    }
    
  2. or download this
    my $dw = new File::DirWalk;
    
    ...
    $dw->setDepth( $depth + 1 );
    
    $dw->walk( $_ ) for @directory;
    

Log In?
Username:
Password:

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

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

    No recent polls found