in reply to File::Find

I don't think windows OSes have "root" directories/folders.
You might have to determine what drives are available
and iterate over those ...
@drives = &someSubThatReturnsListODrives(); foreach my $drive ( @drives ) { find(\&handleFind, $drive); } sub handleFind { my $foundFile = $File::Find::name if 'VCVARS32.BAT'; print "$foundFile\n"; }
... or something like that. I hope someone comes up with a better answer for you. :)

Replies are listed 'Best First'.
Re: Re: File::Find
by Anonymous Monk on Jun 07, 2002 at 18:09 UTC
    That's wierd! I didn't type
    $File::Find::name if 'VCVARS32.BAT'
    

    I typed $drive

    what's up with that?