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;