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)
A:
You can copy the source for copytree
from the 2.6 tree, and put it into your project's source tree.
Ned Batchelder
2010-06-23 21:41:59
import shutil26 as shutilWorks for me. I guess I just assumed this would have been implemented in C. Thanks for the answer!
andyortlieb
2010-06-23 21:58:04