- Jun
- 127
- 2
In the help for TCC date ranges it suggests:
To select files last modified n days ago or earlier, use /[d-n,1/1/80]. For example, to get a directory of all files last modified 3 days or more before today (i.e., those files not modified within the last 3 days), you could use this command:
dir /[d-3,1/1/80]
This does not work. I needed to use:
dir /[d-3,1980/1/1]
Logically you should specify that as:
dir /[1980/1/1,d-3]
or even better:
dir /[,d-3]
To select files last modified n days ago or earlier, use /[d-n,1/1/80]. For example, to get a directory of all files last modified 3 days or more before today (i.e., those files not modified within the last 3 days), you could use this command:
dir /[d-3,1/1/80]
This does not work. I needed to use:
dir /[d-3,1980/1/1]
Logically you should specify that as:
dir /[1980/1/1,d-3]
or even better:
dir /[,d-3]