I've read that rsync cannot detect moved folders, and simply delete and recopy them into the new folder structure.
Since the only change I did to my master copy is the simple introduction of a top folder to contain my original files, i.e.:
folder1
folder2
folder3
into
top\folder1
top\folder2
top\folder3
I was wondering if I could just do the same manually in my backup copy, fix the modification times of both top folders somehow, so that succeeding calls to rsync would run normally.
Will this work? If so, how? If not, what is the recommended way to solve this problem? Or should I be running rsync with different parameters in the first place? (instead of rsync -a --delete /mnt/SRC /mnt/DEST
which I'm currently using)
The directories are pretty large and so I'd like to avoid unnecessary recopying as much as possible.