Is there a way to have shutil.make_archivesome child directories excluded or, alternatively, is there a way to add directories to a single archive through shutil?
Examples are funny :
/root
/workingDir
/dir1
/dir2
/dirA
/dirB
/dir3
Suppose I wanted to create an archive from workingDirthat included everything except dirA- how could I do this? Is this possible if you did not write a method for cyclic movement throughout the tree?
MrDuk source
share