复制目录树
placeholderCopyimport shutil
source='//192.168.1.2/Daily Reports'
destination='D:\\Reports\\Today'
shutil.copytree(source, destination)
目标目录必须不存在。
placeholderCopyimport shutil
source='//192.168.1.2/Daily Reports'
destination='D:\\Reports\\Today'
shutil.copytree(source, destination)
目标目录必须不存在。