直接修改copytree的实现即可,如下:
#copytree中找到 os.makedirs(dst),加入判断,就这么简单 if not os.path.exists(dst): os.makedirs(dst)