9 lines
232 B
Text
9 lines
232 B
Text
// version 1.1.4
|
|
|
|
import java.io.File
|
|
|
|
fun main(args: Array<String>) {
|
|
val dirPath = "docs" // or whatever
|
|
val isEmpty = (File(dirPath).list().isEmpty())
|
|
println("$dirPath is ${if (isEmpty) "empty" else "not empty"}")
|
|
}
|