Quick tip.
This can be very handy when you need to frequently create a folder structure without files (Ex. Project folders or multiple versions of a development area)
Just run:
find <directory> -type d -maxdepth n -exec mkdir /where/you/want/{} ;
This is a quick way of doing it and can even be automated.