My fellow monks, I found a quick upload script and it's working fine. It's uploading the files to the wwwroot dir on my system. I even changed it so that it's doing it to the correct file name/type instead of just a txt file as it was when I found it. My question is how can I have it upload to a different directory? Right now, it does it thusly (where $base = filename.type):
open FILE, ">$base";
binmode FILE;
while (<$file>) {
print FILE $_;
$length += length($_);
}
I tried this:
$upload_path = "\uploaded_files\";
$uploaded_file .= $upload_path + $base;
open FILE, ">$uploaded_file";
binmode FILE;
while (<$file>) {
print FILE $_;
$length += length($_);
}
but it didn't work. I'm not sure how to go about acomplishing this. Do I need to escape the "\" in $uploaded_path? Can you lend a hand?
_____________________________________________________mojobozo
word (wûrd)
interj. Slang. Used to express approval or an affirmative response to
something. Sometimes used with up. Source
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.