使用zipfile模块,我创建了一个脚本来提取我的存档文件,但是该方法破坏了除txt文件以外的所有文件。

def unzip(zip):
         filelist = []
         dumpfold = r'M:\SVN_EReportingZones\eReportingZones\data\input\26012012'
         storage = r'M:\SVN_EReportingZones\eReportingZones\data\input\26012012__download_dump'
         file = storage + '\\' + zip
         unpack = dumpfold + '\\' + str(zip)
         print file

         try:

                     time.sleep(1)
                     country = str(zip[:2])
                     countrydir =  dumpfold + '\\' + country
                     folderthere = 0
                     if exists(countrydir):
                        folderthere = 1

                     if folderthere == 0:
                       os.makedirs(countrydir)

                     zfile = zipfile.ZipFile(file, 'r')
##                     print zf.namelist()
                     time.sleep(1)
                     shapepresent = 0

这里我有一个问题-通过读取和写入压缩数据,zipfile命令似乎使其无法被所讨论的程序使用-我正在尝试解压缩用于ArcGIS的shapefile文件。。。
                     for info in zfile.infolist():
                         fname = info.filename
                         data = zfile.read(fname)
                         zfilename = countrydir + '\\' + fname
                         fout = open(zfilename, 'w')# reads and copies the data
                         fout.write(data)
                         fout.close()
                         print 'New file created ----> %s' % zfilename





         except:
                        traceback.print_exc()
                        time.sleep(5)

可以用系统命令调用WinRar并让它为我解包吗?干杯,亚历克斯
编辑
使用了wb方法后,它对我的大多数文件都有效,但有些文件仍在损坏。当我使用winRar手动解压它们正确加载的有问题的文件时,它们也显示了更大的文件大小。
请有人给我指一下加载winRar以完成解压过程的方向好吗?

最佳答案

为了回答问题的第二部分,我建议使用envoy library。要与特使一起使用winRar:

import envoy
r = envoy.run('unrar e {0}'.format(zfilename))
if r.status_code > 0:
    print r.std_err
print r.std_out

在没有特使的情况下这样做:
import subprocess
r = subprocess.call('unrar e {0}'.format(zfilename), shell=True)
print "Return code for {0}: {1}".format(zfilename, r)

10-08 09:40