sachinmkulkarni has asked for the wisdom of the Perl Monks concerning the following question:
I get the following error message.. readLine() on closed filehandle..foreach my $file(@files) { open (FH, $file); my @fileContents = <FH>; close(FH); //Do something with @fileContents }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: File read errors
by jwkrahn (Abbot) on Jan 14, 2010 at 04:24 UTC | |
by Anonymous Monk on Jan 14, 2010 at 04:30 UTC | |
|