I am working on backing up a number of local and non-local files to my Windows machine. I am familiar with rdiff-backup from other Linux boxes that I use. I have installed rdiff-backup using instructions etc from here, http://www.nongnu.org/rdiff-backup/index.html
I have rdiff-backup installed and it appears to be working "almost" fine. The problem is that I have a directory that I want to exclude. On a linux OS I could just do,
rdiff-backup --exclude C:/target/stuff C:/ D:/backup
However this does not work on a WindowsOS machine. Using the suggested formatting posted here:
http://www.nongnu.org/rdiff-backup/Windows-README.txt
I have tried the following,
rdiff-backup --exclude "C:/target/stuff" C:/ D:/backup
also with escape characters...
rdiff-backup --exclude C:\\/target\\/stuff C:/ D:/backup
as well as doing this from the "C:/" directory,
with no luck at all.