in reply to file upload
Give that a try.open (IN, "$filename") || die ("$!"); # your code here # now change read to... while ($Bytes = read(IN, $Buffer, 1024)) { $BytesRead += $Bytes; print OUTFILE $Buffer; } close(OUTFILE); close(IN);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: file upload
by antirice (Priest) on Jul 10, 2003 at 21:21 UTC | |
by Dave's not here (Initiate) on Jul 11, 2003 at 16:06 UTC | |
|
Re: Re: file upload
by choocroot (Friar) on Jul 10, 2003 at 21:17 UTC |