我有一个zip文件结构,如 - B.zip/org/note.txt 我想直接列出org文件夹中的文件而不必去B.zip
中的其他文件夹我编写了以下代码,但它列出了B.zip文件中可用的所有文件和目录
f = zipfile.ZipFile('D:\python\B.jar')
for name in f.namelist():
print '%s: %r' % (name, f.read(name))
答案 0 :(得分:3)
您可以通过startwith函数过滤产量。(使用Python 3)
&