You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The call of VirtualFolder.getAllFiles() takes minutes with about 2000 files. Tested on MS Window 10.
It is because it recursively calls List.contains(...), which calls FileSystemFile.equals, which calls slow File.getCanonicalFile()
The call of VirtualFolder.getAllFiles() takes minutes with about 2000 files. Tested on MS Window 10.
It is because it recursively calls List.contains(...), which calls FileSystemFile.equals, which calls slow File.getCanonicalFile()
See PR #915 with test case and fix
The text was updated successfully, but these errors were encountered: