How to specify two file extensions?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
soaper
Posts: 55
Joined: Sun Nov 08, 2015 9:34 am

How to specify two file extensions?

Post by soaper »

I want to get all files that has the word "Git" in them, either with the extension pdf or epub. So I run the following search:

Code: Select all

ww:git ext:pdf|epub
But it seems the search locks on the word epub because it returns folders with name epub in them as well as all sorts of files, ending with epub or containing epub.

Adding the "file:" prefix does not change the results.

Is this a bug, or am I not specifying the options correctly?
salazor
Posts: 258
Joined: Tue Jun 17, 2014 10:52 am

Re: How to specify two file extensions?

Post by salazor »

Try:

Code: Select all

ww:git ext:pdf;epub
OR

Code: Select all

ww:git *.pdf|*.epub
soaper
Posts: 55
Joined: Sun Nov 08, 2015 9:34 am

Re: How to specify two file extensions?

Post by soaper »

Thanks salazor, the semicolon worked! Much appreciated.
Post Reply