Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  1. List item

I want to zip all apk file avail in a folder . I am new for pyhon please help me.

Here is my code--

#!/usr/bin/env python
from __future__ import with_statement
from contextlib import closing
from zipfile import ZipFile, ZIP_DEFLATED
import os
import sys

def zipdir(basedir, archivename):
    assert os.path.isdir(basedir)
    with closing(ZipFile(archivename, "w", ZIP_DEFLATED)) as z:
    for root, dirs, files in os.walk(basedir):
        #NOTE: ignore empty directories
        for fn in files:
            absfn = os.path.join(root, fn)
            zfn = absfn[len(basedir)+len(os.sep):] #XXX: relative path
            z.write(absfn, zfn)

if __name__ == '__main__':
    basedir = sys.argv[1]
    archivename = sys.argv[2]
    zipdir(basedir, archivename)
share|improve this question
You have an indentation problem, please verify the indentation in your code. – Burhan Khalid Oct 31 '12 at 6:41
it is my code for Python 2.5 use shutil.make_archive() on newer Python versions instead – J.F. Sebastian Oct 31 '12 at 6:45
yes this is yours only but it is not workin – kanishk15 Nov 1 '12 at 4:51
@kanishk15: the point being it is for Python 2.5. 'not workin' is too general. What error do you get? Try python -mzipfile -c pki.zip *.pki – J.F. Sebastian Nov 2 '12 at 13:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.