in reply to Re: Net::FTP can't fetch file to local directory?
in thread Net::FTP can't fetch file to local directory?
Hi,
hossman comments are right!
Third argument is Resume option (i.e. to download a partial file)
I have worked extensively in Net::FTP module, I hope the below changes will work.
$ftp->get($remote_file, "$new_directory/$remote_file");
Gopal