Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: Net::FTP pwd bug?

by mikeock (Hermit)
on Oct 12, 2005 at 22:59 UTC ( [id://499715]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Net::FTP pwd bug?
in thread Net::FTP

When that variable is added  my $mypath = $ftp->pwd(): to my code, I get the same results as just trying to call  $ftp->pwd();

And by the same I mean that there is no repsonse at all. The Box that has the server on it allows me to login and type pwd so I know that it is supported on the server.

Replies are listed 'Best First'.
Re^4: Net::FTP pwd bug?
by runrig (Abbot) on Oct 12, 2005 at 23:08 UTC
    Have you tried trapping for errors similar to the code in grantm's post above?:
    my $path = $ftp->pwd() or die "pwd failed: " . $ftp->code() . ": " . $ftp->message(); print "$path\n";
      Hmmm.... Copied
      my $path = $ftp->pwd() or die "pwd failed: " . $ftp->code() . ": " . $ftp->message(); print "$path\n";
      Directly and it seems to work... (I get the path!)

      What was I doing wrong?

      Edit Da der I forgot to print the path! I got it now

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://499715]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-20 03:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found