Given the following example
-- Drive to backup
D:\Data
D:\Data\docs
D:\Data\docs\mydoc1.txt
D:\Data\docs\mydoc2.txt
D:\Data\readme.txt
-- Full Backup result
E:\Backup\Full\Data
E:\Backup\Full\Data\docs
E:\Backup\Full\Data\docs\mydoc1.txt
E:\Backup\Full\Data\docs\mydoc2.txt
E:\Backup\Full\Data\readme.txt
-- Incremental backup result (e.g. files mydoc3.txt and updated readme.txt)
E:\Backup\Inc\Data\docs\mydoc3.txt
E:\Backup\Inc\Data\readme.txt
The full backup is quite simple to achieve cause its simply a copy of the original folder. However, the incremental backup part is tricky cause i want to output in the above file/folder structure. I've searched a few backup solutions but the output of the incremental backup is 1 big file and it contains the changes.
Is there a backup solution that will achieve the above example?