Combine this path with one or several arguments, and return a new path representing either a subpath (if all arguments are relative paths) or a totally different path (if one of the arguments is anchored).
(self, *pathsegments)
| 162 | return type(self)(*pathsegments) |
| 163 | |
| 164 | def joinpath(self, *pathsegments): |
| 165 | """Combine this path with one or several arguments, and return a |
| 166 | new path representing either a subpath (if all arguments are relative |
| 167 | paths) or a totally different path (if one of the arguments is |
| 168 | anchored). |
| 169 | """ |
| 170 | return self.with_segments(self, *pathsegments) |
| 171 | |
| 172 | def __truediv__(self, key): |
| 173 | try: |