Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Re-reading from already read filehandle

I opened a file to read from line by line:

open(FH,"<","$myfile") or die "could not open $myfile: $!";
while (<FH>)
{
    # ...do something
}

Later on in the program, I try to re-read the file (walk thru the file again):

while (<FH>)
{
    # ...do something
}

and realized that it is as if the control within file is at the EOF and will not iterate from first line in the file.... is this default behavior? How to work around this? The file is big and I do not want to keep in memory as array. So is my only option is to close and open the file again?

like image 234
rajeev Avatar asked Aug 20 '12 19:08

rajeev


2 Answers

Use seek to rewind to the beginning of the file:

seek FH, 0, 0;

Or, being more verbose:

use Fcntl;
seek FH, 0, SEEK_SET;

Note that it greatly limits the usefulness of your tool if you must seek on the input, as it can never be used as a filter. It is extremely useful to be able to read from a pipe, and you should strive to arrange your program so that the seek is not necessary.

like image 59
William Pursell Avatar answered Oct 11 '22 14:10

William Pursell


You have a few options.

  • Reopen the file handle
  • Set the position to the beginning of the file using seek, as William Pursell suggested.
  • Use a module such as Tie::File, which lets you read the file as an array, without loading it into memory.
like image 42
TLP Avatar answered Oct 11 '22 12:10

TLP