in reply to module design musings: File::CopyTree
So if you do go ahead with the module File::Find::Rule should fit in nicely.## UNTESTED ## use File::Find::Rule; my $dest = shift; # just needs case-insensitivity ... my $rule = File::Find::Rule->new(); my @files = $rule->file() ->not( $rule->new->(name => '*.obj') ) ->exec( \&foo ) ->in( $dest );
_________
broquaint
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: module design musings: File::CopyTree
by John M. Dlugosz (Monsignor) on Sep 27, 2002 at 14:37 UTC |