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

com.github.lsqlebai.utils.FileUtil.kt Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
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