The everything tool is rarely used at ordinary times, but sometimes it cannot be used in north China.
Everything supports five search methods, such:
Regular match search:
After you select Regular Expression matching, you may need to match the name of a file in a folder or some characters in a file name (you cannot remember the file name ), even all types of files in a file
Regular Syntax:
A | B a or B
Gr (A | E) y matches gray or gray
. Any character
[ABC] any character: A, B, or C
[^ ABC] any character, excluding A, B, and C
[A-Z] any character from A to Z
[A-Za-Z] any character from A to Z and from A to Z
^ File name starts
$ End of file name
* The previous content is repeated 0 or multiple times.
? The previous item is repeated 0 or 1 time.
+ Repeat the previous item for one or more times.
{X} previous content repeat X times
{X,} the previous item repeats X or more times.
The number of repetitions in the previous item {x, y} is between x and y.
EverythingIn the regular expression, the folder uses a backslash instead of a slash.
// Search for PHP under the fltdomestic111027 folder
Fltdomestic111027 \. + \. php
Search for empty folders:
Empty:
Find duplicate files:
Dupe: