Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Won't Fix
-
2.0 branch (discontinued)
-
None
Description
There is a counter in createTempDir() that is supposed to create directories like:
- dir0
- dir1
- dir2
But currently it creates the following directories:
- dir0
- dir01
- dir012
Moreover, testing every path with File.exists() can affect performance, I would advise to use UUID and not check that the directory exists, as UUID is really unique for the running JVM.