1. Lets say I have a folder on c drive that has 50 files in it.
2. Each file has unique properties (different file types, dates, etc).
3. Is it possible to find the duplicates of these 50 files on another drive? Without having to search for the dupes for each file one-by-one?
Example:
S1. 1st search -> source C:\myfolder\*.*
S2. 2nd search -> find dupes (using hash) of the files in S1, anywhere on D:\ (including sub folders)
I know this is possible with other apps dedicated to finding dupes, but wondered if it's currently possible with EverythingApp.
Thanks!
Andy
Search within a search (for dupes)?
Re: Search within a search (for dupes)?
Everything 1.4, no.
Everything 1.5, it's a little complicated, please try the following search:
filelist1: | "d:\" *.* sizefilelist1: dupe:size;sha256
Hold down Ctrl and click the filelist1: text in the search box.
Click Add folder...
Select c:\myfolder\ and click OK.
Click OK.
The sizefilelist1: search will help prevent Everything from finding duplicates from just under D:\
Change *.* to any filter you like, consider an extension list, for example: ext:mp3;mp4;mkv;jpg
Use dupe:size;sha256 to actually find the duplicated files with a matching hash.
Use dupe:size to instantly find duplicated files based on the matching size only.
filelist1:
dupe:
ext:
Everything 1.5, it's a little complicated, please try the following search:
filelist1: | "d:\" *.* sizefilelist1: dupe:size;sha256
Hold down Ctrl and click the filelist1: text in the search box.
Click Add folder...
Select c:\myfolder\ and click OK.
Click OK.
The sizefilelist1: search will help prevent Everything from finding duplicates from just under D:\
Change *.* to any filter you like, consider an extension list, for example: ext:mp3;mp4;mkv;jpg
Use dupe:size;sha256 to actually find the duplicated files with a matching hash.
Use dupe:size to instantly find duplicated files based on the matching size only.
filelist1:
dupe:
ext:
Re: Search within a search (for dupes)?
Thank you!
To make it work, I had to use:
filelist1: | "R:\" *.* sizefilelist1: dupe:crc-32
Otherwise it gave erratic results that included unrelated files simply because they matched the file size:
Example:
source file -> AutoHotkey.exe, with file size of 1221kb
matched -> 0564v.jpg, with file size of 1221kb
I get the same thing if I tried to include 2 target drives like this:
filelist1: | "R:\" | "S:\" *.* sizefilelist1: dupe:crc-32
Is this the expected behavior?
Is there a way to prevent this type of result?
Andy
Re: Search within a search (for dupes)?
sizefilelist1: will force Everything to show files from only c:\myfolder\ and "d:\" where the size matches a file from c:\myfolder\
What I think you are seeing is files only your d:\ with the same size as a file in c:\myfolder\
For example: two 0564v.jpg files on your D: drive, even though there's no 0564v.jpg file in c:\myfolder\
Ideally, you would want to search for sha526filelist1:
However, I don't have a function to do this yet.
What I think you are seeing is files only your d:\ with the same size as a file in c:\myfolder\
For example: two 0564v.jpg files on your D: drive, even though there's no 0564v.jpg file in c:\myfolder\
Ideally, you would want to search for sha526filelist1:
However, I don't have a function to do this yet.
Re: Search within a search (for dupes)?
Another search that might be useful:
<"c:\myfolder\" column1:=A> | <"d:\" column1:=B> *.* dupe:size;sha256;!column1
This will find files with the same size and sha256, but never show these duplicates under the same root folder.
The limitation here is you'll only see one duplicated result from your D: drive. (when there might be two or more)
<"c:\myfolder\" column1:=A> | <"d:\" column1:=B> *.* dupe:size;sha256;!column1
This will find files with the same size and sha256, but never show these duplicates under the same root folder.
The limitation here is you'll only see one duplicated result from your D: drive. (when there might be two or more)