Hi Manbahadur,
If I understand your query correctly, You want to create same directory structure skipping the files. You can achieve this by running below rsync command
$ rsync -av -f”+ */” -f”- *” /home/linuxtechi/Documents /home/pkumar/Documents
In the above command, first one is the source path of directory and second one is the target path where we want to sync directory structure.
]]>