Can anyone please help construct a suitable Everything query.
I have many files with "KV" in their name and most are correctly filed in directories - which also have "KV" in their directory name.
How do I find those files containing "KV" which are not in directories with "KV"in their name?
Want to find files containing "KV" in their name which are not already in directories with "KV" in their name
Re: Want to find files containing "KV" in their name which are not already in directories with "KV" in their name
Please try searching for:
!**kv**\* kv
! = NOT
** = match any character
the \ will enable full path matching for this term
**kv**\* basically means match if kv is anywhere in the path part of the full path and filename.
!**kv**\* kv
! = NOT
** = match any character
the \ will enable full path matching for this term
**kv**\* basically means match if kv is anywhere in the path part of the full path and filename.
Re: Want to find files containing "KV" in their name which are not already in directories with "KV" in their name
Re: Want to find files containing "KV" in their name which are not already in directories with "KV" in their name
** and * are the same in Everything 1.4
In future versions of Everything, ** will match any character and * will match any character except \
This of course will be optional from Options -> Search -> Allow * to match \.
In future versions of Everything, ** will match any character and * will match any character except \
This of course will be optional from Options -> Search -> Allow * to match \.
Re: Want to find files containing "KV" in their name which are not already in directories with "KV" in their name
It is great! Thank you for clarifications!
Re: Want to find files containing "KV" in their name which are not already in directories with "KV" in their name
Both suggestions work well. Thank you.