Details
-
Improvement
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
Ubuntu 14. JDK 7
Description
FileUtils.folderSize function recursively traverses the directory tree using listFiles method. This is no longer efficient as Java 7 offers much better Files.walkFileTree method. It makes the method work twice faster according to my tests.