gpt4 book ai didi

python - ZIP - 压缩文件实际上并不压缩文件

转载 作者:行者123 更新时间:2023-12-01 05:17:53 25 4
gpt4 key购买 nike

我有一个简短的方法,它采用文件路径和该路径中的文件名列表作为参数,并且应该将所有这些文件压缩到一个存档文件中。问题是,它不是压缩文件,而是在存档中为我尝试压缩的每个文件创建一个空目录。方法如下:

 def zip(self, file_path, filename_list):

f = zipfile.ZipFile(file_path + '_converted_zip_archive.zip', 'w')
for filename in filename_list:
f.write(file_path, filename)

f.close()

如果我打电话

zip('uploads/', ['test_1.txt', 'test_2.txt', 'test_3.txt'])

我最终得到一个包含以下目录的存档文件:

/test_1.txt/
/test_2.txt/
/test_3.txt/

我在 ZIP 文件中创建一堆空目录而不是实际压缩这些文本文件,我做错了什么?

最佳答案

您正在将目录写入存档三次(使用三个不同的名称)。更明确地说,您正在将以下内容写入存档:

uploads/ as test_1.txt
uploads/ as test_2.txt
uploads/ as test_3.txt

你想这样做吗?

def zip(self, file_path, filename_list):
f = zipfile.ZipFile(file_path + '_converted_zip_archive.zip', 'w')
for filename in filename_list:
f.write(file_path + filename, filename) # note the addition of filename here
f.close()

关于python - ZIP - 压缩文件实际上并不压缩文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22902720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com