in reply to File::Find
... or something like that. I hope someone comes up with a better answer for you. :)@drives = &someSubThatReturnsListODrives(); foreach my $drive ( @drives ) { find(\&handleFind, $drive); } sub handleFind { my $foundFile = $File::Find::name if 'VCVARS32.BAT'; print "$foundFile\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: File::Find
by Anonymous Monk on Jun 07, 2002 at 18:09 UTC |