我想从zip中的文件创建一个文件对象。我不想提取那个文件。实际上我想对zip中的文件使用seek方法。我的代码:
from zipfile import ZipFile
input_zip = ZipFile("xyz.zip")
file_name = input_zip.namelist()[0]
input_zip.read(name)
但是我不能对它使用seek方法。我想让它像这样,但不提取文件:
file = open("new.txt", 'rb')
file.seek(14)
文档说明支持seek
,您只需要以正确的方式打开它(如图所示)。