The #! line is irrelevant on Windows platforms, and only a convenience on Unix. It is best if you omit it here.
Your program is mostly correct, but avoids a lot of conveniences that Perl provides to make the code more concise and comprehensible.
You should always add use warnings to your use strict as it will pick up simple errors that you may otherwise overlook.
Your file opens should use lexical file handles and the three-parameter form of open, and you should check their success as a failure to open a file invalidates most subsequent code. An idiomatic open looks like this
open my $fh, '<', 'myfile' or die $!;
It is also worh pointing out that an open mode of +>> opens the file for both read and append, which is difficult to nadle. In this case you mean just >>, but it is best to open the file once and leave it open for the duration of the program run.
This is a reworking of your program, which I hope helps you. It uses a regular expression to check whether the string appears in the current line of the file. /\Q$string/ is identical to $_ =~ /\Q$string/, i.e. it tests the $_ variable by default. The \Q in the regex is a quotemeta, which escapes any characters in the string that might otherwise behave as special characters in a regex and change the meaning of the search.
Note that, within the File::Find wanted subroutine, $_ the current working directory is set to the directory containg the current file being reported. $_ is set to the file name (without a path) and $File::Find::name is set to the full absolue file and path. Because the current directory is the one containing the file, it is easy just to open the file $_ as the path isn't needed.
use strict;
use warnings;
use File::Find;
my $dir = 'C:\path\to\dir';
my $string = 'defined';
open my $results, '>', 'results.txt' or die "Unable to open results file: $!";
find (\&printFile, $dir);
sub printFile {
return unless -f and /\.txt$/;
open my $fh, '<', , $_ or do {
warn qq(Unable to open "$File::Find::name" for reading: $!);
return;
};
while ($fh) {
if (/\Q$string/) {
print $results "$File::Find::name\n";
return;
}
}
}
grepinstead of rolling your own. – jonnyGold Jun 19 '12 at 14:12grep()function. Also from experience I recommend you to output to STDIN instead of a file (justprint()it). You can redirect the output to a file using>redirection. This allows more flexibity to the script (for example piping the output to another process, etc...). – m0skit0 Jun 19 '12 at 14:20grepwon't do that: it filters Perl lists not files. And you can't output toSTDIN:) – Borodin Jun 19 '12 at 14:36