Help for this page

Select Code to Download


  1. or download this
    use strict;
    use File::Find;
    ...
    for (sort { your sort criteria here} @files) {
       say $_;
    }
    
  2. or download this
    my @files = File::Find::Rule->files()->in($dir);