How to select paired files and exclude non-paired ones?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
Rogergx
Posts: 1
Joined: Tue Dec 15, 2015 8:06 am

How to select paired files and exclude non-paired ones?

Post by Rogergx »

Such as in filelists of
aaa.eng.txt
aaa.cn.txt
abb.eng.txt
bbb.eng.txt
bbb.cn.txt
ccc.cn.txt
...



choose only:
aaa.eng.txt
aaa.cn.txt
bbb.eng.txt
bbb.cn.txt
***.eng.txt
***.cn.txt
void
Developer
Posts: 16684
Joined: Fri Oct 16, 2009 11:31 pm

Re: How to select paired files and exclude non-paired ones?

Post by void »

Unfortunately, It is currently not possible to do this within Everything.
Everything only compares a single filename at a time.

You could try exporting all results (File -> Export) to a txt file and running a third party regex... (grep for windows?)

Try the regex expression over the entire txt file with something like:

Code: Select all

(.*)[.]eng[.]txt.*\1[.]cn[.]txt
Post Reply