in reply to Net::FTP - Check if file already exists locally before download
Is this what you are looking for?
for my $file (@set_of_files) { $ftp->get ($file) unless -e $file; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Net::FTP - Check if file already exists locally before download
by mitabrev (Novice) on Feb 12, 2019 at 12:04 UTC | |
Re^2: Net::FTP - Check if file already exists locally before download
by mitabrev (Novice) on Mar 11, 2019 at 21:24 UTC | |
by Paladin (Vicar) on Mar 11, 2019 at 21:44 UTC | |
by mitabrev (Novice) on Mar 12, 2019 at 08:24 UTC |