Page 1 of 1

Search for files using several criteria

Posted: Tue Jul 15, 2025 7:47 pm
by pgb205
If I want to find only images matching 'aaa' AND 'bbb' in the file name, how can I do that?

Re: Search for files using several criteria

Posted: Thu Jul 17, 2025 10:33 am
by michel038
Search on file names only ?
1) In displayed files : Quick search field in toolbar : aaa.*bbb|bbb.*aaa


2) In a folder and all subfolders ? Use Tools > search
Select the parent folder, and
- Search in catalog
- Search in subfolders
- Use Regular Expression
Enter aaa.*bbb|bbb.*aaa in "Filename" field.

aaa.*bbb|bbb.*aaa is a "Regular Expression"
.* means any string
ex: 1aaa234z567bbb89 will match aaa.*bbb
| means "or"
then add the other pattern bbb.*aaa

Re: Search for files using several criteria

Posted: Fri Jul 18, 2025 1:32 pm
by pgb205
this is xnview classic @michel038