in reply to Re^3: getfile( $filename )
in thread getfile( $filename )
which doesn't really lend itself to modularization because the processing is always different.my $FH = IO::File->new ... until ( $FH->eof ) { my $chunk = $FH->read( ... ) # process $chunk }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: getfile( $filename )
by QM (Parson) on Aug 07, 2005 at 16:12 UTC |