rjc_thatsthat has asked for the wisdom of the Perl Monks concerning the following question:
This does create the directory /httpdocs/this_folder/new_folder, as it should, but then dies returningmy $i2 = "/httpdocs/this_folder"; my $i3 = "new_folder"; $ftp->cwd($i2) or die "change to directory $i2: ".$ftp->message." - ". +$ftp->code; $ftp->mkdir($i3) or die "make new directory $i3: $ftp->message." - ".$ +ftp->code;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: NET::ftp mkdir succeeds but then dies with 501?
by Anonymous Monk on May 07, 2009 at 22:39 UTC | |
by Anonymous Monk on May 07, 2009 at 23:19 UTC | |
|
Re: NET::ftp mkdir succeeds but then dies with 501?
by philipbailey (Curate) on May 08, 2009 at 08:33 UTC | |
by rjc_thatsthat (Initiate) on Mar 01, 2010 at 15:10 UTC |