I’m wondering if there’s a way to do this with everything, but a file in folder A is only regarded as unique when it has a hash value, like SHA-1, which doesn’t occur in any file contained in folder B, and vice versa? I know that hashing all the files each time is time consuming, but there are a few rare instances where I would find it useful. The main reason is to not display results which are hash-duplicates but have different filenames.NotNull wrote: ↑Tue Feb 06, 2024 9:41 pm
- Create the following filter:
Name = Difference between 2 folders (or whatever you like to name it)
Search =
Macro = diffCode: Select all
file: regex:#regex-escape:<#element:<$param:,;,1>>(.*$) | regex:#regex-escape:<#element:<$param:,;,2>>(.*$) unique:regmatch1;size;dm
Back in the main window:
- Set the filter to Everything
- Search for:The resultlist will show which files are either not on one of the 'sides' or have a different name, date modified or sizeCode: Select all
diff:"X:\first folder\";"Y:\second folder\"
Otherwise, is there any other software which would be better suited to those needs?
thanks