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)
| 164 | return type(self)(*pathsegments) |
| 165 | |
| 166 | def joinpath(self, *pathsegments): |
| 167 | """Combine this path with one or several arguments, and return a |
| 168 | new path representing either a subpath (if all arguments are relative |
| 169 | paths) or a totally different path (if one of the arguments is |
| 170 | anchored). |
| 171 | """ |
| 172 | return self.with_segments(self, *pathsegments) |
| 173 | |
| 174 | def __truediv__(self, key): |
| 175 | try: |
no test coverage detected