up vote 1 down vote favorite
1
share [g+] share [fb]

How can I create a zip archive of a directory structure in Python?

link|improve this question
Which operating system ? The Finder, Explorer and Nautilus all have some form of 'archive' option when you right-click on a directory. – Steve De Caux Dec 6 '09 at 11:15
OS neutral. Should work in windows and linux. – Martha Yi Dec 6 '09 at 11:17
feedback

4 Answers

up vote 7 down vote accepted

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:

#!/usr/bin/env python
import os
import zipfile

def zipdir(path, zip):
    for root, dirs, files in os.walk(path):
        for file in files:
            zip.write(os.path.join(root, file))

if __name__ == '__main__':
    zip = zipfile.ZipFile('Python.zip', 'w')
    zipdir('tmp/', zip)
    zip.close()

Adapted from: http://www.devshed.com/c/a/Python/Python-UnZipped/

link|improve this answer
1  
Thank you so much, this is exactly what I was looking for. – Martha Yi Dec 6 '09 at 11:39
2  
In case you're copy-pasting the code, note that the extension argument actually doesn't do anything. – me_and Dec 6 '09 at 11:43
Oops, yes I removed the part where it checks the extenions, but forgot to remove the parameter on the function. Thanks for pointing it out. – Mark Byers Dec 6 '09 at 12:34
Just pointing out, it has been edited but still has the '.txt' argument in the function call – Ben James Dec 6 '09 at 20:41
@Ben James. Fixed it. PS: you have enough rep to edit answers, so you could actually just fix it yourself if you wanted to. :) – Mark Byers Dec 6 '09 at 21:22
show 1 more comment
feedback

To add the contents of mydirectory to a new zip file, including all files and subdirectories:

import os
import zipfile

zf = zipfile.ZipFile("myzipfile.zip", "w")
for dirname, subdirs, files in os.walk("mydirectory"):
    zf.write(dirname)
    for filename in files:
        zf.write(os.path.join(dirname, filename))
zf.close()
link|improve this answer
I'd like to upvote that, but I'm wondering if it's not giving the OP a reason to stay lazy (as he obviously didn't open the doc). – e-satis Dec 6 '09 at 11:31
1  
Actually I found it pretty tricky to work out how to do this from just the docs. – Ben James Dec 6 '09 at 11:34
2  
Since there is no "recursively add a folder" method, and the required os.walk is in another module. – Ben James Dec 6 '09 at 11:35
feedback

Using the base Python zipfile module.

link|improve this answer
feedback

You probably want to look at the zipfile module; there's documentation at http://docs.python.org/library/zipfile.html.

You may also want os.walk() to index the directory structure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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