mojobozo has asked for the wisdom of the Perl Monks concerning the following question:
open FILE, ">$base"; binmode FILE; while (<$file>) { print FILE $_; $length += length($_); }
$upload_path = "\uploaded_files\"; $uploaded_file .= $upload_path + $base; open FILE, ">$uploaded_file"; binmode FILE; while (<$file>) { print FILE $_; $length += length($_); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: uploading to a different directory
by iburrell (Chaplain) on Nov 07, 2002 at 17:12 UTC | |
|
Re: uploading to a different directory
by fglock (Vicar) on Nov 07, 2002 at 16:37 UTC | |
by mojobozo (Monk) on Nov 07, 2002 at 16:51 UTC |