Searching in Windows Explorer

Find Tips and tricks on how to better use the Zeus IDE. Feel free to post your own tips but please do not post bug reports, feature requests or questions here.
Post Reply
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Searching in Windows Explorer

Post by jussij »

By default when using the search features of Windows Explorer the search results returned are never an exact match.

However, you can use search filters to change the behaviour of the search, including exact match results.

Below are some examples of how you can control the search results:

  • Searching for debug will return everything with debug in any searchable meta-data
  • Searching for Name:debug returns everything with debug in the name
  • Searching with Name:=debug returns only those entries with names exactly matching debug
  • Searching for Extension:=.cpp returns any file with the .cpp file extension
  • Searching for EXT: .cpp OR .hpp returns any file with the .cpp or .hpp file extension (uppercase OR appears to be important)
  • Searching for datemodified:21/08/2019 returns any file changed on the date provided
  • Searching for datemodified:>=21/08/2019 returns any file changed on or after the date provided

These commands can also be combined:

Code: Select all

extension:.cpp datemodified:21/08/2019

Code: Select all

EXT: .cpp OR .hpp datemodified:>=17/08/2019
Cheers Jussi
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Re: Searching in Windows Explorer

Post by jussij »

You can also search for items of a given size:

Code: Select all

size: >= 128mb
Or use the one of the predefined size size ranges.

Code: Select all

Empty   : 0kb files
Tiny    : 0-10kb
Small   : 10-100kb
Medium  : 100kb-1mb
Large   : 1mb-16mb
Huge    : 16mb-128mb
Gigantic: larger than 128mb
For example searching for Huge files can be done as follows:

Code: Select all

size: >= Huge
Post Reply