Unmatched ! properties does not work with find-dupes:

Discussion related to "Everything" 1.5 Alpha.
Post Reply
anmac1789
Posts: 668
Joined: Mon Aug 24, 2020 1:16 pm

Unmatched ! properties does not work with find-dupes:

Post by anmac1789 »

Hello, everyone it seems that there is a conflict when using find-dupes:column1 with date-modified:!=date-taken: in this command

Code: Select all

column1:=name:,size:,formatfiletime($date-taken:) find-dupes:column1 date-modified:!=date-taken:
It doesn't show proper results. Please see screenshots

This is the file "20210829_181116.jpg" I am searching for everywhere on my computer.

Screenshot 2023-09-21 125953.jpg
Screenshot 2023-09-21 125953.jpg (84.63 KiB) Viewed 887 times

When I use
"20210829_181116.jpg" column1:=name:,size:,formatfiletime($date-taken:) find-dupes:column1
without
date-modified:!=date-taken:
then the results show as intended. See screenshot below:

Screenshot 2023-09-21 130222.jpg
Screenshot 2023-09-21 130222.jpg (109.08 KiB) Viewed 887 times

The problem then occurs when I add
date-modified:!=date-taken:
into the search bar and no results are displayed. See screenshow below

Screenshot 2023-09-21 130637.jpg
Screenshot 2023-09-21 130637.jpg (31.97 KiB) Viewed 887 times
However, when I just use
"20210829_181116.jpg" date-modified:!=date-taken:
then it displays the results correctly. See screenshot below.

Screenshot 2023-09-21 130901.jpg
Screenshot 2023-09-21 130901.jpg (47.79 KiB) Viewed 887 times
So it seems to me like find-dupes doesn't work well with unmatched properties such as date-modified!=date-taken: as one example. Is this a known issue ?
void
Developer
Posts: 16669
Joined: Fri Oct 16, 2009 11:31 pm

Re: Unmatched ! properties does not work with find-dupes:

Post by void »

find-dupes: is applied after your search, so you are really searching for:

Code: Select all

column1:=name:,size:,formatfiletime($date-taken:) date-modified:!=date-taken: find-dupes:column1 


Please try the following:
  • Search for:

    Code: Select all

    column1:=name:,size:,formatfiletime($date-taken:) find-dupes:column1 
    
  • Select all results (Ctrl + A)
  • Copy all filenames (Ctrl + Shift + C)
  • Set your search to:

    Code: Select all

    filelist1: date-modified:!=date-taken: 
    
  • Hold down Ctrl and click the filelist1: text in the search box.
  • Paste your filenames.
  • Does Everything show the expected results?
anmac1789
Posts: 668
Joined: Mon Aug 24, 2020 1:16 pm

Re: Unmatched ! properties does not work with find-dupes:

Post by anmac1789 »

yea now it shows the expected results thank you sir
Post Reply