(self, *parts: str)
| 11 | return os.path.normpath(os.path.join(self.prefix_dir, *parts)) |
| 12 | |
| 13 | def exists(self, *parts: str) -> bool: |
| 14 | return os.path.exists(self.path(*parts)) |
| 15 | |
| 16 | def star(self, end: str) -> tuple[str, ...]: |
| 17 | paths = os.listdir(self.prefix_dir) |