in reply to Re: Problems Uploadng a file
in thread Problems Uploadng a file
and it filled the screen with the stuff you would expect from a binary file. The problems seems to be in linewhile ( $bytesread = read $fh, $buffer, 1024 ) { print "$buffer"; print OUTF $buffer; } close OUTF;
It seems that for some reason it does not like the way I am describing or naming the file location.open(OUTF, '>', "$directory$filename") || Error;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Problems Uploadng a file
by Marshall (Canon) on Sep 14, 2011 at 00:57 UTC | |
|
Re^3: Problems Uploadng a file
by Anonymous Monk on Sep 14, 2011 at 07:45 UTC |