Help for this page

Select Code to Download


  1. or download this
    my $found;
    
    sub wanted {
        $found = $File::Find::name if /^eudora\.ini\z/i;
    }
    
  2. or download this
    my ($found) = File::Find::Rule
        ->file
        ->name('eudora.ini')
        ->in('C:\\');