0
Completed
[Suggestion] Set folder exclusion
As of version 1.7 users are able to set folders in /admin that the scraper will traverse. Please add a textarea in the Comics setting to set folders to be ignored. Some users may have sub-folders within their comics directory that have not yet been sorted or had not yet had metadata generated and should not be scanned by Ubooquity.
Customer support service by UserEcho
For instance you could ignore all "#recycle" directories.
But I've not had any success.
Thanks,
Christophe.
You have to use Java regular expressions (which are very close to regular expressions used in many other languages).
Here is the detailed definition of regexps in Java : https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html
Here is a tool to easily test your expressions: http://java-regex-tester.appspot.com/
Then I think there's a bug somewhere as I am using \.AppleDouble as a regex (accepted by the test tool) but I still see .AppleDouble folders on ubooquity.
Do you have any suggestions?
Cheers,
Christophe.
In your case, something like ".*.AppleDouble" (without the quotes) should work.
(there is probably a cleaner regexp for this one, but I'm not a regexp expert)
Let me know if the problem persists.
Cheers,
Christophe