CPAN
Perl fast file finder – File::Find::Rule
Hello again, Here is a fine example of some Perl code to make finding files on your filesystem really, really fast : use File::Find::Rule; File::Find::Rule->file->exec( sub { print “Filename : ” . $_[0], “\n”; print “Path : ” . $_[1], “\n”; print “Path/Filename : ” . $_[2], “\n”; return 0; Read more…