(size>x)
Find files with a size greater 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 (1024 bytes).
  {unit} can be MB for megabytes (1024 kilobytes).
  {unit} can be GB for gigabytes (1024 megabytes).
Find files above 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)