Bash line to copy folder structure only (not files) contained in current folder. Inspired by: http://www.linuxquestions.org/questions/linux-newbie-8/copy-directory-structure-only-208796/.
# Run from source folder’s root.
find . -type d -exec mkdir ../destination-folder-name/{} \;