in reply to Help with opening subdirectories

Try This
use File::Find; sub process_file { if(-f $File::Find::name) { open(FILE1, $File::Find::name) || die "Cannot open file : $!"; $line1 = <FILE1>; print "$File::Find::name\n"; print $line1; } } find(\&process_file, "C:\/views\/EDMAN");

Replies are listed 'Best First'.
Re^2: Help with opening subdirectories
by Anonymous Monk on Feb 27, 2006 at 16:09 UTC
    Thanks a lot, I will try this. You and Phil are my hero