If you want to copy a complete folder structure, but not the files contained in it, use robocopy from the command line:
robocopy "A:\Source folder" "B:\Destination folder" /e /xf *
This is lifted straight from https://superuser.com/a/873585/178934, I’m just putting it here for my quick reference.