RSS | Module Info | Add a review of File-Find-Wanted
File-Find-Wanted
(1.00)
Works great!
The Synopsis is clear enough that I was able to use this several years ago as a Perl neophyte, despite not knowing what a callback was.
As Andy mentions in the Synopsis, if you really do need a set of complex rules to identify the files you want, check out File::Find::Rule. However, nine times out of ten, you probably don't need anything more than the ease and simplicity of File::Find::Wanted.
Christopher Bottoms - 2012-08-09T04:18:37 (permalink)
1 out of 1 found this review helpful.
Was this review helpful to you?
Yes
No
File-Find-Wanted
(0.01)
Yet another attempt to simplify File::Find that almost succeeds. I also dislike the interface of File::Find. This module does what its name advertises name but I would have like to see a module that:
1/ Returns files in directories. No sub, no filter, no wanted.
2/ takes the options, if any, as named arguments.
3/ that have options, if any, closely matching "find" so we don't need to learn yet another api
4/ Let Perl be Perl:
@wanted_files = map{ -f && /\.c$/} find(@directories) ;
I'm looking forward to version 0.02
نديم الخمير - 2004-08-06T06:42:07 (permalink)
1 out of 2 found this review helpful.
Was this review helpful to you?
Yes
No

