com.github.lsqlebai.utils.FileUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server-common Show documentation
Show all versions of server-common Show documentation
An kotlin server common jar
package com.github.lsqlebai.utils
import org.apache.tomcat.util.http.fileupload.FileUtils
import java.io.File
object FileUtil {
fun checkPath(path: String) {
val file = File(path)
if (!file.exists()) {
FileUtils.forceMkdir(file)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy