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

net.dankito.utils.filesystem.FileSystemWalkResult.kt Maven / Gradle / Ivy

The newest version!
package net.dankito.utils.filesystem


class FileSystemWalkResult(
        val discoveredFiles: List,
        val discoveredFolders: List
) {

    override fun toString(): String {
        return "${discoveredFiles.size} files and ${discoveredFolders.size} folders"
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy