Return a list of class ZipInfo instances for files in the archive.
(self)
| 1610 | return [data.filename for data in self.filelist] |
| 1611 | |
| 1612 | def infolist(self): |
| 1613 | """Return a list of class ZipInfo instances for files in the |
| 1614 | archive.""" |
| 1615 | return self.filelist |
| 1616 | |
| 1617 | def printdir(self, file=None): |
| 1618 | """Print a table of contents for the zip file.""" |
no outgoing calls