resolveSibling

Platform and version requirements: JVM (1.0)
fun File.resolveSibling(relative: File): File

Adds relative file to this parent directory. If relative has a root or this has no parent directory, relative is returned back. For instance, File("/foo/bar").resolveSibling(File("gav")) is File("/foo/gav").

Return concatenated this.parent and relative paths, or just relative if it's absolute or this has no parent.

Platform and version requirements: JVM (1.0)
fun File.resolveSibling(relative: String): File

Adds relative name to this parent directory. If relative has a root or this has no parent directory, relative is returned back. For instance, File("/foo/bar").resolveSibling("gav") is File("/foo/gav").

Return concatenated this.parent and relative paths, or just relative if it's absolute or this has no parent.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.io/java.io.-file/resolve-sibling.html