本文介绍了每天在同一时间使用WinSCP将远程ftp文件夹与本地同步的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想每天早上6点将远程ftp文件夹与本地文件夹同步。有没有一种方法可以自动化此WinSCP,这样我就不必使用Windows Scheduler?
I want to synchronize a remote ftp folder with my local folder every morning at 6am. Is there a way to automate this WinSCP so that I dont have to use Windows Scheduler?
推荐答案
创建批处理文件
Create a batch file
set winscp=C:\WinSCP\WinSCP.com
echo option batch continue > script.tmp
echo option confirm off >> script.tmp
echo open ftp.example.com >> script.tmp
echo synchronize remote C:\local\folder /home/remote/folder >> script.tmp
echo exit >> script.tmp
%winscp% /script=script.tmp
del script.tmp
这篇关于每天在同一时间使用WinSCP将远程ftp文件夹与本地同步的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!