in reply to
Re: 'Permission Denied' error from File::Find
in thread 'Permission Denied' error from File::Find
All:
With all of the help given to me here(and some one-on-one tutoring) I was able to work out most of my issues! Thank you very much!!!!!!!!!!!
Here is my most recent attempt..getting there
#!c:\perl\bin\perl.exe -w
use strict;
use File::Find;
#variables
my ($directory,$file,$text);
print "Enter search text: ";
$text = <STDIN>;
chomp $text;
$directory = 'c:\my_directory';
find (\&search,$directory);
sub search {
my $file = $File::Find::name;
if (-r $file && -f $file) {
open (FILE, "$file") or die "Guess what, it didn't work! $!\n";
while (my $line = <FILE>) {
print "$text - $file\n"
if $line =~ /$text/;
}
}
close FILE;
}