1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Finish --gc.

This commit is contained in:
Cedric Beust 2016-03-20 20:06:14 -07:00
parent 7a0ead0eac
commit 8ca320bedc
2 changed files with 20 additions and 30 deletions

View file

@ -45,12 +45,22 @@ class Io(val dryRun: Boolean = false) {
}
}
fun rmDir(dir: File) {
fun rmDir(dir: File, keep: (File) -> Boolean = { t -> false }) = rmDir(dir, keep, " ")
private fun rmDir(dir: File, keep: (File) -> Boolean, indent : String) {
log("rm -rf $dir")
if (! dryRun) {
require(dir.isDirectory, { -> println("$dir should be a directory")})
dir.deleteRecursively()
require(dir.isDirectory, { -> println("$dir should be a directory")})
dir.listFiles({ p0 -> ! keep(p0!!) }).forEach {
if (it.isDirectory) {
rmDir(it, keep, indent + " ")
it.deleteRecursively()
}
else {
log(indent + "rm $it")
if (! dryRun) it.delete()
}
}
}