maciejchwala wrote: 2018-11-06, 09:50 UTC
I am looking for a way to find all non .jpg or .jpeg files there.
MVV wrote: 2018-11-06, 11:28 UTC
Code: Select all
*.* | *.jpg *.jpeg *.avi *.ini ...
That will still list all the folders (even with a *.jpg), because they contain one or more *.* files also.
But search
*.* | *.jpg *.jpeg (find everything but JPGs)
plus
[Advance] >> [x]Attributes with
[_]Directory -settings
will probably find all the non-relevant files.
Afterwards a click at [Feed to listbox] and the files are listed for to copy, move or delete.
A even shorter search string is:
* | *.jp*g \*
and without the need to change the Attributes setting due to the
\*.
Do that work?
Press F1-key in MRT dialog to read more.
Explanation:
* >>>> find everything
| >>>> but not that listed of the right side of the pipe symbol
*.jp*g >>>> search for and exclude *.jpg or *.jpeg
\* >>>> search for and exclude folders with any name
- - -
BTW
< * | *.jp
?g> doesn't work for me,
only <* | *.jp
*g> does work for me.
(I just use <..> here instead of "..." quoting. I didn't use that quotes in my real search)
The "?" should work regarding to the help for <*.htm?>, but didn't work in my test in the middle of a string.
EDIT:
<*.htm?> finds only a HTML file for me.
Only <*.htm*> find all HTM and HTML files. Tested with 9.21a 32-bit on W7/64.