django多个文件下载

时间:2013-06-06 01:15:55

标签: python django download multifile

我的英语不好,因为我来自台湾,所以我会试着描述我的问题。

我正在使用FileWrapper下载一个大文件,但我不知道如何在一个响应中下载多个文件。我还可以使用其他什么方法?

try:
    mms = message.objects.get(token=token)
except message.DoesNotExist:
    return HttpResponse('ret=1&msg=Invalid arguments&')

try:
    attach = mms.message_attach_set.get(id = int(attach_id))
except message_attach.DoesNotExist:
    return HttpResponse('ret=1&msg=Invalid arguments&')

response = HttpResponse(FileWrapper(attach.file), mimetype='application/force-download')
response['Content-Length'] = str(attach.file.size)
response['X-Sendfile'] = '%s' % (attach.realName)
return response

1 个答案:

答案 0 :(得分:2)

一种方法是创建tarfile存档并将文件作为单个包发送 。 python api是here