Python:shutil.copytree,python 2.5中缺少忽略arg
除了本质上重写 copytree 以接受忽略回调之外,在 python 2.6 之前的版本中实现此目的的简单方法是什么? (我不想偏离我的 debian 软件包)
Short of essentially rewriting copytree to accept an ignore callback, what is a simple way to achieve this in versions prior to python 2.6? (I don't want to stray from my debian packages)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 2.6 树中复制
copytree
的源代码,并将其放入项目的源代码树中。You can copy the source for
copytree
from the 2.6 tree, and put it into your project's source tree.