1

我想即时创建一个 zip 文件以通过 Cherry Py 为用户提供服务:我尝试了以下代码,该代码生成了一个无效的 zip 文件:

@cherrypy.expose
def ZipDir(self, *args):
    path = "\\".join(args)
    output = StringIO.StringIO()
    file = zipfile.ZipFile(output, "w")

    zip_filename = path + ".zip"

    cherrypy.response.headers['Content-Type'] = 'application/zip'
    cherrypy.response.headers['Content-Disposition'] = 'attachment; filename="%s"' % (zip_filename,)
    dir = filter(lambda x: x.lower().endswith(".mp3") or not ("." in x), os.listdir("G:\\Music\\" + path))
    for f in dir:
        file.write("G:\\Music\\" + path + "\\" + f,f,zipfile.ZIP_DEFLATED)
    return output.getvalue()

文件大小看起来差不多,但它没有注册为任何应用程序的 zip 文件。

4

1 回答 1

1

我忘了在返回之前调用 file.close() 。那解决了它!

于 2012-05-29T01:12:29.173 回答