Anonymous FTP synchronize
Hello,
I am trying to automate the synchronization of a remote file to a local file, and the remote file is on an ftp that I anonymously log into. I am trying the following script
option confirm off
option batch abort
open ftp://anonymous@ftpsite.edu
synchronize local "C:\\localfile\\" /remote/file/names
exit
And it is not working. This is similar to something I use for sftp file transfers, which works fine. I can't find examples using an anonymous ftp, so I thought I'd ask here. Thanks.
I am trying to automate the synchronization of a remote file to a local file, and the remote file is on an ftp that I anonymously log into. I am trying the following script
option confirm off
option batch abort
open ftp://anonymous@ftpsite.edu
synchronize local "C:\\localfile\\" /remote/file/names
exit
And it is not working. This is similar to something I use for sftp file transfers, which works fine. I can't find examples using an anonymous ftp, so I thought I'd ask here. Thanks.