Hello everyone, I use this syntax to find duplicate files which exist in each folder. But, in some folders, dupes exist for which it doesn't have the same filename but the exact size. How can I extend this regex into matching files with size and exist in both folders ?
However, This might list duplicated files just in E: or just in S:
That's what I'm trying to avoid, duplicates in either folder, I just want to match a file or files with the same size that exist and have dupes in the other folder. I think I will just use grouping and dupe:size instead and sort out the filenames after...
This assumes that 1. the file exists in two locations and 2. it has the same filename. What if the file exists in both locations with the same size and a different filename. How can I match the files from 2 locations LIKE FILEexists but iirespective of the filename ?
I have 2 different paths which contain the same size file different name yet regex wasn't able to match the file. Here is a screenshot of a sample file
image.png
In this screenshot, this is the 2 folders which contain the same file with a different name
image.png
In this screenshot, I used the above regex commands and only one of the file is listed. Although, the " | " is used, shouldn't it show both ? or how does the above command actually function if it's just finding files by size ? but also checking if the 2 paths exist the same file size ?
You do not have the required permissions to view the files attached to this post.
The spaces around the OR statement (" | ") are crucial. Otherwise the OR will be seen as part of the first regex (regex "eats" | )
Add file: to the query, like the original.
Better to disable all search modifiers, in this case Ignore Punctuation and Ignore Whitespace
image.png
this actually gave me the dupes PLUS the pics that doesn't even have the same size or name! I have even disabled Ignore Punctuation and Ignore Whitespace (unchecked). The point is to find the dupes among thousands of files
You do not have the required permissions to view the files attached to this post.
How come I can't use something like size-exist ? because this tells me that it checks if 2 sizes are the same in 2 different locations and matches them, without filenames