Replies: 1 comment 1 reply
-
I have no idea. It's the way Java is returning the files. File[] files = new File(dir).listFiles(file -> {
if (fsSettings.getFs().isFollowSymlinks()) return true;
return !Files.isSymbolicLink(file.toPath());
}); But that could be a nice addition to fetch the content ordered by the newest content first... |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a few hundred folders with Pdfs. What determines the order fscrawler works thru the folders? For instance, when I start indexing for the first time or reindex using --restart, It always begins with folder 20-34966, even though this isn't the highest/lowest sequentially nor is it the earliest or latest date?
Beta Was this translation helpful? Give feedback.
All reactions