I am using Net::FTP::Recursive to download all of the files on my server to localhost on a daily basis. Is there a way to check for file existence on localhost b/f I download everything? I'd like to skip the files I already have downloaded.
my $host = "host"; my $user = "u"; my $password = "p";
my$f = Net::FTP::Recursive->new($host, Debug => 0, Passive => 0);
$f->login($user,$password);
$f->rget();
$f->quit;