rethaew has asked for the wisdom of the Perl Monks concerning the following question:
use Net::FTP; my $ftp = Net::FTP->new("blah.com", Debug => 0); $ftp->login('user','pass'); foreach $file (@filelist) { $ftp-> put("$file") unless ($ftp-> fileexists($file));#fake code }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Net:FTP Not overwrite files
by MidLifeXis (Monsignor) on Jul 25, 2008 at 16:35 UTC | |
Re: Net:FTP Not overwrite files
by Khen1950fx (Canon) on Jul 26, 2008 at 09:18 UTC | |
by alexm (Chaplain) on Jul 26, 2008 at 19:26 UTC | |
by lightman (Initiate) on Jul 24, 2009 at 14:14 UTC | |
by Sol (Initiate) on Nov 05, 2014 at 14:32 UTC | |
Re: Net:FTP Not overwrite files
by spivey49 (Monk) on Jul 25, 2008 at 18:20 UTC |