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

com.hxl.miniapi.utils.FileUtils.kt Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.hxl.miniapi.utils

import java.io.File

object FileUtils {
    fun listFile(root: String): List {
        return File(root).walk().toCollection(mutableListOf())
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy