in reply to Re^2: Upload files using CGI Module
in thread Upload files using CGI Module

<$filehandle> also works. But in binary mode, reading large chunks of data may be more efficient.
You are not interested in parsing the file line by line, and newline chars may be between very small groups of chars, so that would force you to do more disk accesses.

Replies are listed 'Best First'.
Re^4: Upload files using CGI Module
by rpike (Scribe) on Jan 09, 2008 at 18:04 UTC
    That's what I was hoping would be the only difference. Thanks again.