It's default action is to copy only changed files and with a switch or two you can easily make a mirror copy of your chosen directory structure. It doesn't have any concept of incremental backups per se, but with a bit of scripting one could make it do so without too much effort (I've formed some pseudo-code in my head as I've typed).
Similar to robocopy it's basically an rsync style tool that'll generate an exact replica of your source files/folders but does provide a very straightforward UI and will only backup changed files (as with robocopy there's no option for genuine incremental backups though) as well as deletes from backups when source files are deleted, though you can enable/disable that, and uses its' own scheduling to allow your backups to run automatically as long as the program's running.
xcopy sourcedir destdir switches /EXCLUDE exclusionsfile, where
sourcedir = main source directory
destdir = main backup directory
switches are as above (/s to copy subdirectories, /d to copy more recent files only, /r and /h to copy read-only and hidden files, /y to confirm automatically, /c to continue on errors (e.g. access denied), and /f to display full source and destination while copying).
The exclusions file consists of lines, each of which is an expression. If any line matches all or part of a file of directory in the source, that file/directory will be ignored.
To back up just your Documents directory, you might try:
The quotes round fullpathtoyourdocuments are needed if there are any spaces in the path. (I don't have spaces, because I'm backing up from the root directory of each drive, and use the exclusions file to "deselect" unwanted files.)
It isn't open source, but xcopy comes free with Windows, and it has worked well for me on several machines.
I have been using ViceVersa Plus for several years. It is not open source and not free, but the $35 I spent on this have been worth every penny as it makes syncing my laptop with the server a no-hassle job that just works every day. There is a free 30-day trial available at http://www.tgrmn.com/
By Newt_OthisPosted Thursday 25th June 2009 14:58 GMT
I've been using SyncToy 2.0 - another freebie from Microsoft - to backup my info to an external HDD.
Sure, it's not a full backup of the OS, but I'd rebuild that from stratch if it Borked itself.
It's kind of a 'nice' frontend to robocopy - takes an age to run the first time, but subsequent runs are fast.
It lets you decide how aggressive the sync is - whether or not you'd like to replicate source file deletions to the copy.
Being a straight copy of the files means that it's easy to use and transportable, but it's uncompressed and the data is only as good (or bad) as the last sync. No fancy Time Machine stuff here.
Answers to: What's the best open source Windows back-up app?
For a basic option... #
By bluesxman Posted Friday 19th June 2009 11:16 GMT
Another basic choice #
By Alex 0.1 Posted Friday 19th June 2009 12:32 GMT
Windows backup #
By vdal Posted Friday 19th June 2009 20:06 GMT
A great product although not free #
By peter2.0 Posted Monday 22nd June 2009 07:32 GMT
SyncToy 2.0 #
By Newt_Othis Posted Thursday 25th June 2009 14:58 GMT
SyncBack #
By Jim 48 Posted Friday 26th June 2009 14:24 GMT