in reply to FTP files from multiple source directories to multiple target directiories
Then use this basic idea in a loop over files for each source directory.use Net::FTP; chdir "/tmp"; $ftp = Net::FTP->new("some.host.name", Debug => 0); $ftp->login("anonymous",'-anonymous@'); $ftp->cwd("/pub"); $ftp->get("that.file"); $ftp->quit;
-Mark
|
|---|