I\'m trying use shutil.copytree:
shutil.copytree(SOURCE_DIR, TARGET_DIR, ignore=None)
This copy also files in folder. I need copy only folders
You should consider using os.walk.
os.walk
Here is an example for os.walk. This way you could list all the directories and then create them with os.mkdir.
os.mkdir