Compare the content of one folder with an entire drive?

Discussion related to "Everything" 1.5 Alpha.
Post Reply
ocdmax
Posts: 1
Joined: Wed May 08, 2024 9:13 am

Compare the content of one folder with an entire drive?

Post by ocdmax »

Moved from Compare 2 file lists with each other?

Hello can i use this to compare the content of one folder with an entire drive to see any files in that folder come across the other drive, or even the same drive but just comparing the files of that one folder.

dupe: does not work for me
similar: doesn't (not even sure if real command)

and i tried your macro by using ! in it and stuff.. no success.. :(

Basically my goal is to check my entire computer if i did not name those files somewhere else the same way.
Last edited by NotNull on Fri May 17, 2024 8:40 pm, edited 3 times in total.
Reason: Split
NotNull
Posts: 5308
Joined: Wed May 24, 2017 9:22 pm

Re: Compare the content of one folder with an entire drive?

Post by NotNull »

ocdmax wrote: Wed May 08, 2024 9:42 am Basically my goal is to check my entire computer if i did not name those files somewhere else the same way.
Create a new Filter:

Code: Select all

Name  = Anywhere Else?
Search = file:   <[element:$param:,;,1]   A:=Source > | < ![element:$param:,;,1]  [element:$param:,;,2]   A:=Target>   dupe:name,!column-A
Macro = anywhere

How to use
  • Set the active filter to Everything
  • Search for:

    Code: Select all

    anywhere:"C:\first folder\";"D:\second fodler\"
    This will show files from "first fodler" that also exist somewhere in "second folder". It will show *A* match in "second folder", not all matches.
  • If you want to search against the entire system, not only second folder, use the following search:

    Code: Select all

    anywhere:"C:\first folder\"

Note:
- Using ! (NOT) with dupe is not recommended(see discussion here), but it looks like it works as desired in this specific case.
- This has been tested *very* briefly, so please post your feedback.
Post Reply