(self, *parts: str)
| 8 | prefix_dir: str |
| 9 | |
| 10 | def path(self, *parts: str) -> 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)) |
no outgoing calls