in reply to Upload Progress
The size of the uploaded file may (or may not) be passed in the headers - call uploadInfo() to find out.$q = CGI->new(); $q->upload_hook(\&hook,$data); sub hook { my ($filename, $buffer, $bytes_read, $data) = @_; print "Read $bytes_read bytes of $filename\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Upload Progress
by valdez (Monsignor) on Apr 27, 2004 at 00:07 UTC | |
by cees (Curate) on Apr 27, 2004 at 01:08 UTC |