(self, pattern)
| 428 | return map(self._next, filter(matches, self.root.namelist())) |
| 429 | |
| 430 | def rglob(self, pattern): |
| 431 | return self.glob(f'**/{pattern}') |
| 432 | |
| 433 | def relative_to(self, other, *extra): |
| 434 | return posixpath.relpath(str(self), str(other.joinpath(*extra))) |