How do I know an item is a directory while looping over zipfile in Python?

7.7k Views Asked by At

Doing something like this:

from zipfile import ZipFile

#open zip file
zipfile = ZipFile('Photo.zip')

#iterate zip contents
for zipinfo in zipfile.filelist:
    #do something
    filepath, filename = path.split(zipinfo.filename)

How do I know if zipinfo is a file or a directory?

2

There are 2 best solutions below

5
On BEST ANSWER

Probably this is the right way:

is_dir = lambda zipinfo: zipinfo.filename.endswith('/')
0
On

Starting with Python 3.6 there is a ZipInfo.is_dir() method.

with zipfile.ZipFile(zip_file) as archive:
    for file in archive.namelist():
        file_info = archive.getinfo(file)
        if file_info.is_dir():
            # do something

See the Python 3.6 docs for details.