When I do something like:
rsync Videos/YouTube/LetsPlays foo@bar:/home/foo/
The resulting directory structure looks like:
/home/foo/LetsPlays
I've read the man pages but couldn't an option to maintain the directory structure, aiming for
/home/foo/Videos/YouTube/LetsPlays
as result. Any ideas?
As always thanks in regards, Markus
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 pathEx:
would result in this remote path:
I tried to use
--relative
flag that didn't work for me. Therefore, I used-R
to retain the path. Insert a dot /./ into the path where you want to break it.Command:
Example:
Result: