After Update, OR no longer works.

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
cfredc
Posts: 13
Joined: Mon Jun 10, 2013 6:37 pm

After Update, OR no longer works.

Post by cfredc »

After Update, OR no longer works.

XP

Even copying from your FAQ, restrictions using | or OR no longer work.

kim *.bmp|*.jpg
Yields 591,771 results (597,751 if kim is deleted)

kim *.bmp
Yields 0 results

kim *.jpg
Yields 45 results (Whole Word) or 624 results (not Whole Word)

I really miss this ability. What have I screwed up?
vsub
Posts: 439
Joined: Sat Nov 12, 2011 11:51 am

Re: After Update, OR no longer works.

Post by vsub »

Adding | means that all parameters will apply only for the previous filter
kim *.bmp|*.jpg
This will display all bmp images that have kim in his name and display all jpg images regardless of the name

It works fine here
wallpaper *.bmp|*.jpg
This displayed all of my bmp images that have wallpaper in the name and also displayed every single jpg I have
cfredc
Posts: 13
Joined: Mon Jun 10, 2013 6:37 pm

Re: After Update, OR no longer works.

Post by cfredc »

Before Updating, this expression resulted in a list of all bmp OR jpg files containing kim in the name.

Now, just as you say, ALL jpg files are listed, irrrespective of their name.

This makes OR useless. How can I go back to making OR work as before the update?
vsub
Posts: 439
Joined: Sat Nov 12, 2011 11:51 am

Re: After Update, OR no longer works.

Post by vsub »

Umm did you tried
kim *.bmp|kim *.jpg

Or like that
kim ext:bmp;jpg
cfredc
Posts: 13
Joined: Mon Jun 10, 2013 6:37 pm

Re: After Update, OR no longer works.

Post by cfredc »

Thanks, but, before the Update, I used stored restrictions like: epub|pdf|lit|mobi|txt |wpd !url !.dcm !bk!
to give a quick listing of all files which meet these restrictions.

It worked great and I’d sure like to go back to that functionality.
void
Developer
Posts: 15279
Joined: Fri Oct 16, 2009 11:31 pm

Re: After Update, OR no longer works.

Post by void »

You will need to use grouping.

Please try:

Code: Select all

<epub|pdf|lit|mobi|txt|wpd> !url !.dcm !bk!
I have fixed the issue for the next beta update. I hope to release this sometime this week.
nagan
Posts: 302
Joined: Thu Apr 18, 2013 11:44 am

Re: After Update, OR no longer works.

Post by nagan »

What will be the exact syntax to list file with "No extensions"? the equivalent of say test ext: which attempts to list such a file.

Also test ext:jpg; --lists test* with both jpg and "no extension" whereas adding another term say test ext:jpg;bmp; knocks off the "no extension" file. Surprisingly the logic works for "t" ,"te" but not for "tes" onwards.

EDIT There seems to be a problem with "te" too , which is listing lesser number of files on adding more extensions..
cfredc
Posts: 13
Joined: Mon Jun 10, 2013 6:37 pm

Re: After Update, OR no longer works.

Post by cfredc »

Yes, Void, that works - thanks.

The fix and new update are great news.
vsub
Posts: 439
Joined: Sat Nov 12, 2011 11:51 am

Re: After Update, OR no longer works.

Post by vsub »

nagan wrote:What will be the exact syntax to list file with "No extensions"? the equivalent of say test ext: which attempts to list such a file.
You are just using ext: without adding anything.
For example searching for make(from makefile which don't have extension) and adding ext: displayed all of the makefiles I have on the hdd(no folders no any other file)
nagan wrote:Also test ext:jpg; --lists test* with both jpg and "no extension" whereas adding another term say test ext:jpg;bmp; knocks off the "no extension" file. Surprisingly the logic works for "t" ,"te" but not for "tes" onwards.
Adding ; at the end means that there will be another search criteria after it(in this case,no extension),so remove it
nagan
Posts: 302
Joined: Thu Apr 18, 2013 11:44 am

Re: After Update, OR no longer works.

Post by nagan »

I tried this exercise.
a ext: ---------875 files
a ext:avi --------1808 ,,
a ext:bmp ---------280 ,,
a ext:bmp;avi ---2088 ,,
a ext:bmp;avi;---2595 files instead of say 2963 files. The quantum of extension less files seem to have come down.
Last edited by nagan on Wed Jun 12, 2013 10:19 am, edited 1 time in total.
void
Developer
Posts: 15279
Joined: Fri Oct 16, 2009 11:31 pm

Re: After Update, OR no longer works.

Post by void »

Thanks for the bug report nagan,

The issue is related to the empty extension, I will fix this for the next beta update.
Post Reply