in reply to Re: Re: Re: Re: copy directories
in thread copy directories
adding a die statement makes it reture "Died at sendfile.pl line 28"...is a little ambiguous. did you do this?
or this27 : } elsif(-d "$ARGV[0]") { 28 : die; 29 : print "Copying path to $Single_User_Directory - "; 30 : mkpath([$ARGV[0], $Single_User_Directory], 1, 0711);
27 : } elsif(-d "$ARGV[0]") { 28 : print "Copying path to $Single_User_Directory - " || d +ie; 29 : mkpath([$ARGV[0], $Single_User_Directory], 1, 0711);
mkpath([$ARGV[0], $Single_User_Directory], 1, 0711) or die;
the secret is $! -- without it, you're rendering your dies useless.mkpath([$ARGV[0], $Single_User_Directory], 1, 0711) or die "Unable to +mkpath!!! perl reports $! ---;
|
|---|