0
我在一個名爲öl_och_ål_är_gott.zip的zip壓縮文件中有一個文件öl_och_ål_är_gott.txt。檔案不是使用zipfile創建的。它可能來自任何能夠創建zip檔案的軟件。如何在壓縮文件中使用非ASCII文件名並在Python 2.4中使用ZipFile將其解壓縮?
src = open(file_path, "rb")
zip_file = ZipFile(src)
for info in zip_file.infolist():
print info.filename
...
打印出:
」l_och_†l_„r_gott.txt
如何強制壓縮文件來代表,我希望它是代表的名字嗎?
對不起,我應該提到該檔案不是使用zipfile創建的。檔案來自任意來源。 – MdaG 2010-11-24 16:39:46