File Size Searching

 
(size<x)
Find files with a size less than or equal to the the value x.
Usage: (size<x{unit})
 Where x can be an integer or decimal value.
  {unit} can be blank for bytes.
  {unit} can be K for kilobytes.
  {unit} can be MB for megabytes.
  {unit} can be GB for gigabytes.
 
Find files below a certain size. It can be combined with other functions to allow for more specific searching.
 
The following search will return only those files that are between 1MB and 10MB in size (inclusive).
 (size>1MB) (size<10MB)
 
See Also
(size>x), (size=x)