The search string
dm:today *.doc |dm:today *.jpg |dm:today *.ini
only shows the last search options, here all *.ini from today.
But I want to see all " *.doc, *. jpg, *.ini" files of today. Because I have saved this as a bookmark I am sure it has been working with an older version of everything.
Any suggestions for an search string ?
Thanks, Marti
dm:today *.doc |dm:today *.jpg |dm:today *.ini
-
- Posts: 27
- Joined: Thu Aug 01, 2013 4:54 pm
Re: dm:today *.doc |dm:today *.jpg |dm:today *.ini
Code: Select all
dm:today *.doc | *.jpg | *.ini
Re: dm:today *.doc |dm:today *.jpg |dm:today *.ini
Use this:
OR
Both works.
Code: Select all
dm:today *.doc|*.jpg|*.ini
Code: Select all
dm:today ext:doc;jpg;ini
Re: dm:today *.doc |dm:today *.jpg |dm:today *.ini
Beginning with Everything 1.4b, by default, OR takes precedence over AND.
(To me that is wrong, or at least I haven't found a reason to want it that way.)
You can change that: Tools | Options | General -> Search => Operator precedence:
(To me that is wrong, or at least I haven't found a reason to want it that way.)
You can change that: Tools | Options | General -> Search => Operator precedence:
-
- Posts: 27
- Joined: Thu Aug 01, 2013 4:54 pm
Re: dm:today *.doc |dm:today *.jpg |dm:today *.ini
Thanks all for the fast and good replys