in reply to Re: cwd of remote server using Net::FTP
in thread cwd of remote server using Net::FTP
Thanks & Regardsuse Net::FTP; $ftp = Net::FTP->new("Ram", Debug => 0) or die "Cannot connect to some.host.name: $@"; $ftp->login("anonymous",'-anonymous@') or die "Cannot login ", $ftp->message; $temp = $ftp->pwd(); print "test\n", $temp ; #$ftp->get("test.txt") #' or die "get failed ", $ftp->message; $ftp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: cwd of remote server using Net::FTP
by pg (Canon) on Dec 03, 2004 at 06:23 UTC |