in reply to Glob vs File::Util vs File::Find
The reason File::Find::Rule keeps coming up is that it would be the less work by far. For example,
foreach my $file (`find $dir -type f -name "*.txt"`)
would become
foreach my $file (find->file()->name('*.txt')->in('.'))
|
|---|