Groovy Goodness: Calculating Directory Size
Updated: 2013-01-31 06:50:57
Groovy 2.1 adds the method directorySize() to File objects. If the File
object is a directory then the total size of all files is calculated.
Notice this method will go recursively through all subdirectories so it
might take some time before the method returns. If we invoke the method
on a File object that is not a directory an IllegalArgumentException is thrown.
Preview Text: ...