in reply to automate ftp using perl

I might suggest getting a directory listing of files using glob (or some other mechanism) then looping through that list one at a time. Also, make sure to check for success or failure on your ftp commands, that will be a good indication. If you are using Net::FTP, you should have everything you need.

Replies are listed 'Best First'.
Re^2: automate ftp using perl
by sveera (Initiate) on Apr 14, 2005 at 12:46 UTC
    Thankyou very much nimdokk srini