in reply to Re: How to FTP with Timeout?
in thread How to FTP with Timeout?
Okay. With
use Net::FTP; $ftp = Net::FTP->new("some.host.name", Debug => 0); $ftp->login("anonymous",'-anonymous@'); $ftp->cwd("/pub"); $ftp->get("that.file"); $ftp->quit;
Is there any way to put a time limit on the actual file transfer?
Thanks again.
John Bobinyec
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to FTP with Timeout?
by priyaviswam (Sexton) on Nov 11, 2011 at 04:26 UTC | |
|
Re^3: How to FTP with Timeout?
by zentara (Cardinal) on Nov 11, 2011 at 15:41 UTC |