I am facing an issue when searching for files that have partly same names.
Example:
aaa.nameA.cbr
aaa.nameB.cbr
bbb.nameC.cbr
bbb.nameD.cbr
I was expecting namepartdupe: to show me these 4 files in the results, since they do share a part of the filename.
In this example i found dupe: and namepartdupe: both didn't produce the desired result.
Why not just type bbb or aaa in the search query if i'm aware of the common part of the name?
Well actually I'm not aware, this is an example to explain the situation.
I want to search for files that have partly same names, so i can know that they exist. If that makes any sense.
Basically what I'm looking for is what we usually do but reversed.
We provide the keyword for the search, then all files/folders with that keyword appear in the results.
Here i want to use a function that looks for files that have common keywords (or common parts in filename) and display them so i can find them out without the prior knowledge of them having common keywords.
The closest I have come to achieving this is using:
Code: Select all
???.*.cbr
Also this requires the prior knowledge that the common part is 3 characters long.