我有这个python代码:
if '.zip' in add:
print 'Found ' + add + ' archive. We will do nothing.'
unZipFileName = add
z = zipfile.ZipFile(unZipFileName) // here i got the error
for name in z.namelist():
outpath = unZipFileName + '/'
z.extract(name, outpath)
我打印os.path.isfile(add)
并返回True
我在Windows上使用相同的代码及其作品
如果在Windows上存档并且我尝试在Linux上解压缩,那么这是一个问题吗?