vote up 0 vote down star

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.

flag

67% accept rate

2 Answers

vote up 0 vote down

Does copy_tree copy dot files?

link|flag
vote up 0 vote down

I just used shutil.copytree, which takes an ignore kwd arg.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.