I am trying to search for all files having extension do*
I tried:
*.do*
.do*
ext:do*
Unfortunately, the result is empty.
[Solved] Extension search using wildcards
[Solved] Extension search using wildcards
Last edited by w64bit on Fri Jan 21, 2022 3:35 pm, edited 1 time in total.
Re: Extension search using wildcards
Something you need to have additionally enabled in search menu or options, or you have nothing with the extension do* - I checked .*ip and it works - finds all files with zip extension.
Does not work ext:*ip
Does not work ext:*ip
Re: Extension search using wildcards
Wildcards are non-greedy, what Everything needs is an option to use greedy wildcards so *.do* matches all characters up until the last '.'
*.do* !*.do*.*
Kind of works, but does not match abc.do.do
*.do | *.do? | *.do??
Kind of works, but only matches 2, 3 or 4 letter entensions.
For the best results, use:
regex:\.do[^.]*$
ext: does not support wildcards.
*.do* !*.do*.*
Kind of works, but does not match abc.do.do
*.do | *.do? | *.do??
Kind of works, but only matches 2, 3 or 4 letter entensions.
For the best results, use:
regex:\.do[^.]*$
ext: does not support wildcards.