在Python中解压缩EXE文件会导致与Windows错误不兼容

时间:2013-01-08 06:45:45

标签: python windows zipfile

我正在编写一个程序,需要从设定位置下载其他程序。我在Mac OS X上测试时可以毫无问题地下载和运行这些程序,但是当我在Windows上下载并解压缩文件时,它会给我错误:

The version of this file is not compatible with the version of Windows you are running.

然后介绍我如何检查是否需要x86或x64版本。我使用Winrar解压缩了相同的文件,并且包含的​​程序运行顺畅,所以我很确定这是我的代码。

def _unzip_(self,file,destdir):
    print "Unzipping %s to %s" % (file,destdir)
    z = zipfile.ZipFile(file)
    for f in z.namelist():
        # Zipfiles store paths internally using a forward slash. If os.sep
        # is not a forward slash, then we will compute an incorrect path.
        # Fix that by replacing all forward slashes with backslashes if
        # os.sep is a backslash
        if os.sep == "\\" and "/" in f:
            destfile = os.path.join(destdir,f.replace("/","\\"))
        else:
            destfile = os.path.join(destdir,f)
        if destfile.endswith(os.sep):
            if not os.path.exists(destfile):
                os.makedirs(destfile)
        else:
            file = open(destfile,"w")
            file.write(z.read(f))
            file.close()
    z.close()

非常感谢您提供的任何帮助。

1 个答案:

答案 0 :(得分:4)

使用

open(destfile,"wb")

以二进制模式写入文件。