web/ldt/utils/zipfileext.py
author ymh <ymh.work@gmail.com>
Tue, 26 Oct 2010 14:30:42 +0200
changeset 6 c6cff39f9f25
parent 1 eb9188f2ee4f
permissions -rw-r--r--
Added tag V00.02 for changeset 5044dbe8745f

import zipfile, os, os.path

class ZipFileExt(zipfile.ZipFile):
    def unzip_into_dir(self, dir):
        if not os.path.exists(dir):
            os.mkdir(dir, 0777)
        for name in self.namelist():
            if name.endswith('/'):
                os.mkdir(os.path.join(dir,name))
            else:
                outfile = open(os.path.join(dir,name), 'wb')
                outfile.write(self.read(name))
                outfile.close()