plus

operator fun plus(fragment: PathFragment): Path(source)

Returns the path resulting from appending fragment to this path. Equivalent to append(fragment).


open operator fun plus(path: Path): Path(source)

Returns the path resulting from joining path together with this path. Equivalent to join(path).


open operator fun plus(stringPath: String): Path(source)

Returns the path resulting from joining the path in string notation stringPath together with this path. Equivalent to join(stringPath).