Return Traversable child in self
(self, child: StrPath)
| 127 | return match.joinpath(*names) |
| 128 | |
| 129 | def __truediv__(self, child: StrPath) -> "Traversable": |
| 130 | """ |
| 131 | Return Traversable child in self |
| 132 | """ |
| 133 | return self.joinpath(child) |
| 134 | |
| 135 | @abc.abstractmethod |
| 136 | def open(self, mode='r', *args, **kwargs): |