Usage 1: (date>dd/mm/yyyy)
|
Usage 2: (date>yyyy/mm/dd)
|
Usage 3: (date>yyyymmdd)
|
Where yyyy is the year, mm is the date (01 to 12) and dd is the day (01 to 31). |
|
Use this function to find all files and folders that were created on or after a specific date. The function will accept the
date in one of three formats; dd/mm/yyyy or yyyy/mm/dd or yyyymmdd.
|
It is possible to search for a specific range of dates by using the (date<dd/mm/yyyy) function with this one;
|
To search for files created between the 17th of April 2007 and the 31st of July 2008; |
(date>17/04/2007) (date<31/07/2008) |
|
Replace an actual date with one of the following: |
|
!x where x is the number of days before the current (today's) date
|
$x where x is the number of months before the current (today's) date
|
|
to search relative to today. |
|
(date>!5) to search for files created in the last five days. |
(date>$2) to search for files created in the last two months. |
|