Return the files within the archive path.
(self)
| 213 | |
| 214 | |
| 215 | def _get_files(self): |
| 216 | """Return the files within the archive path.""" |
| 217 | try: |
| 218 | files = _zip_directory_cache[self.archive] |
| 219 | except KeyError: |
| 220 | try: |
| 221 | files = _zip_directory_cache[self.archive] = _read_directory(self.archive) |
| 222 | except ZipImportError: |
| 223 | files = {} |
| 224 | |
| 225 | return files |
| 226 | |
| 227 | |
| 228 | def invalidate_caches(self): |