如何在Windows上的Python中调用WinRar?仍然有问题
作者:互联网
使用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命令似乎使有问题的程序无法使用它-我正在尝试解压缩shapefile以在ArcGIS中使用…
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.要将enR与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)
标签:call,python,windows-7,winrar 来源: https://codeday.me/bug/20191201/2083613.html