Is there a good \"scala-esque\" (I guess I mean functional) way of recursively listing files in a directory? What about matching a particular pattern?
For example re
for (file <- new File("c:\\").listFiles) { processFile(file) }
http://langref.org/scala+java/files