Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions os/src/Path.scala
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,8 @@ class Path private[os] (val wrapped: java.nio.file.Path)

def toIO: java.io.File = Path.pathSerializer.value.serializeFile(this)
def toNIO: java.nio.file.Path = Path.pathSerializer.value.serializePath(this)
def toURI: java.net.URI = toNIO.toUri
def toURL: java.net.URL = toURI.toURL

def resolveFrom(base: os.Path) = this

Expand Down
Loading