Help for this page

Select Code to Download


  1. or download this
    my @file_list;
    sub files_wanted {
    ...
      my $file_size = -s $raw_file;
      push @{$files{"$file ($file_size bytes)"}}, $raw_file;
    }
    
  2. or download this
    my %files;
    find sub {
    ...
            }
        }, $directory;