saying
adding a die statement makes it reture "Died at sendfile.pl line 28"...
is a little ambiguous.
did you do this?
27 : } elsif(-d "$ARGV[0]") {
28 : die;
29 : print "Copying path to $Single_User_Directory - ";
30 : mkpath([$ARGV[0], $Single_User_Directory], 1, 0711);
or this
27 : } elsif(-d "$ARGV[0]") {
28 : print "Copying path to $Single_User_Directory - " || d
+ie;
29 : mkpath([$ARGV[0], $Single_User_Directory], 1, 0711);
?
Although you list line 28 as the dying line that doesn't make sense with the original listing... I suppose you have
mkpath([$ARGV[0], $Single_User_Directory], 1, 0711) or die;
try something more verbose :
mkpath([$ARGV[0], $Single_User_Directory], 1, 0711) or die "Unable to
+mkpath!!! perl reports $! ---;
the secret is $! -- without it, you're rendering your
dies useless.
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.