rule PATH
ENTRY [newline ENTRY] ...
Entries are evaluated from top to bottom, each time reading a new record.
MATCH [--and MATCH] ... COMMAND ...
If matches are evaluated as true, commands are executed.
FIELD_NAME [--not] [--ignore-case] PATTERN
path * --disable md5 sha1
Disable `md5' and `sha1' fields of all records.
path * --ignore-case path
Convert `path' field of all records to uppercase.
attributes *DIRECTORY* --drop
Drop all directories.
path --not *:\*:* --drop path --not \\?\UNC\*:* --drop
Find only streams.
reparse_tag "" --drop
Find only reparse points.
path --ignore-case *.log --and attributes --not *DIRECTORY* --drop path --ignore-case *.evt --and attributes --not *DIRECTORY* --drop
Drop non-directories which have extension `log' or `evt'.
attributes *DIRECTORY* --exit path --ignore-case *.log --drop path --ignore-case *.evt --drop
Same result in another way.
path \\?\C:\Temp --drop path \\?\C:\Temp:* --drop path \\?\C:\Temp\* --drop
Drop `\\?\C:\Temp' and its streams and contents.
path \\?\C:\Temp --drop --set ignore_children
Same result in more efficient way, because it stops to find children.