RE: FTP script

2006-03-08 Thread Curtis Leach
The Net:FTP class is easy to use. Curtis -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Craig Cardimon Sent: Thursday, June 24, 2004 7:03 AM To: [EMAIL PROTECTED]; perl-win32-users@listserv.ActiveState.com Subject: FTP script I need to write a script tha

RE: FTP script

2006-03-07 Thread Chris Newman
I use the Net::FTP module. use Net::FTP; then write wrappers for the functions I want, like: ftp_get_files ftp_put_files ftp_lst_files The Perl version is much like what you would expect from an FTP command line client. Here's an example of how to connect to the server... my $ftp = Net::FTP->