![JAR search and dependency download from the Maven repository](/logo.png)
com.github.charleslzq.facestore.Paths.kt Maven / Gradle / Ivy
package com.github.charleslzq.facestore
import java.io.File
class Path(private val absolutePath: String) {
fun toFile() = File(absolutePath)
}
object Paths {
fun get(vararg path: String?) = Path(path.filterNotNull().joinToString(File.separator))
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy