Sync Files, Copy & Delete
I have set-up a script that will synchronize remote files to a local folder, and from a local folder to remote. However, what i am wanting to do is have a script that will detect any changes in the local folder such as if a file/ folder is deleted or renamed that it will synchronize with the remote folder.
I have seen script that once the file is transferred over to the remote location it will delete the file but that is not what i am after. I wish to be able to delete the file manually through windows explorer and the script update and process the rest.
the script i am using at the moment is:
.txt file
.bat file
I have seen script that once the file is transferred over to the remote location it will delete the file but that is not what i am after. I wish to be able to delete the file manually through windows explorer and the script update and process the rest.
the script i am using at the moment is:
.txt file
#Resources Can be Found here - https://winscp.net/eng/docs/scripting option batch abort option confirm off open ftp://usrname:pwd@ftp.address/ synchronize remote [local folder] /[remote folder] exit
@echo off :loop winscp.com /script=SyncToRemote.txt timeout /t 120 goto loop