When I do something like:
rsync Videos/YouTube/LetsPlays foo@bar:/home/foo/The resulting directory structure looks like:
/home/foo/LetsPlaysI've read the man pages but couldn't an option to maintain the directory structure, aiming for
/home/foo/Videos/YouTube/LetsPlaysas result. Any ideas?
As always thanks in regards, Markus
11 Answer
Use the -R or --relative option to preserve the full path.
If you do not want the full path of the remote file, but only part of that, rsync offers this feature since version 2.6.7 (this is the version on the sending side which is the local side in your case).
Just insert a dot /./ into the path where you want to break the path
Ex:
rsync --relative Videos/./YouTube/LetsPlays foo@bar:/home/foo/would result in this remote path:
/home/foo/YouTube/LetsPlays 1