On Mar 12, 2011, at 10:36 AM, Christian GrĂ¼n wrote:
Dear Michael, and thanks Gerrit,
.... Some details on the differences before and after Version 6.5: The following glob syntax
*.
now returns all file names without suffixes; it is internally rewritten to the following regex:
'^[^.]*$'
As Gerrit noticed, the rewritten regex for *.xml looks like
'^[^.].*xml$'
Ah, ok. That helps.
This syntax disallows any dots other than the single suffix dot.
As a temporary solution, I'd recommend to try no filter at all (*), include all necessary dots (*.*.*.xml), or use several runs to get all files into the database.
I can live with that. I'm reassured to learn that the difference in behavior is not my imagination, and that there's a way to get what I need.
Thank you for the clarification.