All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.charleslzq.facestore.Path.kt Maven / Gradle / Ivy

There is a newer version: 1.0.1-RC2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy