http://qs321.pair.com?node_id=1231132


in reply to Re^2: Net::FTP - Check if file already exists locally before download
in thread Net::FTP - Check if file already exists locally before download

for my $file (@set_of_files) { $ftp->get ($file) unless (-e "/dir1/$file" or -e "/dir2/$file"); }
  • Comment on Re^3: Net::FTP - Check if file already exists locally before download
  • Download Code

Replies are listed 'Best First'.
Re^4: Net::FTP - Check if file already exists locally before download
by mitabrev (Novice) on Mar 12, 2019 at 08:24 UTC

    It works.

    Guess I tend to overthink and overcomplicate simple things.:)

    Thanks again!