slow ftps transfers
My company change its protocol this weekend from ftp to ftps. I have been able to adjust the .bat file so the necessary file transfers can still take place, however, the time for these files to transfer has greatly increased. The systems administrator confirmed that I was still connecting at an adequate speed, but it looked like the username was having to request access again after each file transfer. Hopefully this is due to a simple scripting error in the following:
option batch on
option confirm on
open ftps://ngallagher:password@ftp.testsite.com:990 -explicitssl -certificate="xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"
cd "/file path/folder"
option transfer binary
get startOfFileName*
close
exit
option batch on
option confirm on
open ftps://ngallagher:password@ftp.testsite.com:990 -explicitssl -certificate="xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"
cd "/file path/folder"
option transfer binary
get startOfFileName*
close
exit