Just the added files will be indexed.Would exchaning the codes cause a new indexing?
That is not supported.Can I use this code:
I:\\Downloads\\**.{html,htm,mhtml}
Regular expressions should work though:
regex:^I:\\Downloads\\.*\.(html|htm|mhtml)$
^ = start of text
I:\\Downloads\\ = starting path
.* = include as much characters as possible, until ..
\. = literal dot (".")
(html|htm|mhtml) = htm OR htm OR mhtml
$ = end of text
Statistics: Posted by NotNull — Wed Jan 22, 2025 8:56 pm