Help for this page

Select Code to Download


  1. or download this
    sub get_dirlist {
      my $dir_to_scan = shift;
    ...
    
      return @dirlist;
    }
    
  2. or download this
    my @dirlist;
    
    ...
      find( \&wanted, $dir_to_scan );
      return @dirlist;
    }