Python distutils - 带过滤器的copy_tree
我想将数据目录复制到我的分发目录中。 copy_tree
做得很好。但是,该项目也是一个 svn 存储库,我不希望发行版拥有数据目录拥有的所有 .svn 文件。有没有简单的方法来执行不包括 .svn
文件的 copy_tree
,或者我应该编写自己的递归目录副本?我觉得以前肯定有人遇到过这个问题。
I want to copy a data directory into my distribution dir. copy_tree
does this just fine. However, the project is also an svn repository, and I don't want the distribution to have all the .svn files that the data dir has. Is there any easy way to do a copy_tree
excluding the .svn
files, or should I just write my own recursive dir copy? I feel someone must have had this issue before.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚使用了 shutdownttree.copytree,它需要一个ignore kwd arg。
I just used
shutil.copytree
, which takes anignore
kwd arg.试试这个代码片段:
Try this code snippet: