I am trying to copy a directory with files and folders to another directory, first locally for testing, and then to a remote server. A tool that I should use, rsyncbut after a lot of testing and reading documents, I can’t get it to work under Windows 7.
For example, when I try
rsync -av D:\source\ D:\dest\
I get an error The source and destination cannot both be remote.
When I try rysnc -av \source\ D:\dest\, I getError: Failed to exec ssh: No such file or directory (2)
Do you know how I can make it work?
Thank.
source
share