
September 9th, 1999, 11:33 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
I hope you mean "through perl" There's a module called Net::FTP. Once you get it installed (dont know if it's available for win32), do 'perldoc Net::FTP'
From perldoc Net::FTP:
USAGE:
use Net::FTP;
$ftp = Net::FTP->new("some.host.name");
$ftp->login("anonymous","me@here.there");
$ftp->cwd("/pub");
$ftp->get("that.file");
$ftp->quit;
hope this helps.
|