List all subdirectories
Howto list all subdirectories under the current directory.
new File("test").eachDir() { dir ->
println dir.getPath()
}
test\bar test\foo
Howto list all subdirectories under the current directory.
new File("test").eachDir() { dir ->
println dir.getPath()
}
test\bar test\foo