operator fun Path.div(path: String): Path
Resolves give path with this path. Allows for usage like Paths.get("foo") / "bar", Which is identical to Paths.get("foo").resolve("bar").
Paths.get("foo") / "bar"
Paths.get("foo").resolve("bar")
path - Path to resolve.
path
Return Resolved path.