无法在Windows Python 3上解压缩

时间:2016-08-08 09:53:30

标签: python python-3.x windows-server-2008-r2 zipfile

我正在编写脚本以在运行Windows Server 2008 R2的服务器上解压缩zip文件。在测试之后解压缩在我的Mac上运行完美,但在服务器上没有生成解压缩的文件夹,如果我在机器上搜索文件只有压缩文件存在,所以这对我说没有解压缩发生

这是服务器端脚本

def extractZip(*pass in file name*):
    zf = zipfile.ZipFile(fileName, 'r')
    zf.debug =3
    zf.extractall()
    print(zf)
    zf.close()

这与我的mac上的代码100%完全相同。我在这里失踪了什么?在Windows上解压缩是否有区别

0 个答案:

没有答案