public default Path resolveSibling (String other)

Converts a given path string to a Path and resolves it against this path's parent path in exactly the manner specified by the resolveSibling method.

Parameters:
other     the path string to resolve against this path's parent

Returns:  the resulting path

Exceptions:
InvalidPathException     if the path string cannot be converted to a Path.

See also:
FileSystem.getPath

@implSpec The default implementation is equivalent for this path to:


     resolveSibling(getFileSystem().getPath(other));