How can I create a zip archive of a directory structure in Python?
feedback
|
|
As others have pointed out, you should use zipfile. The documentation tells you what functions are available, but doesn't really explain how you can use them to zip an entire directory. I think it's easiest to explain with some example code:
Adapted from: http://www.devshed.com/c/a/Python/Python-UnZipped/ | |||||||||||||||
feedback
|
|
To add the contents of
| |||||||||||
feedback
|
|
Using the base Python zipfile module. | |||
|
feedback
|
|
You probably want to look at the You may also want | ||||
|
feedback
|