Topic
It is not possible to fetch files based on the modification time/date using built-in functions, however, the Python script that will be attached to this post achieves this partially.
You can use the code in the Run Script advanced command to get the last modified time for a file, and then build the logic to compare the date with the Compare Dates advanced command.
Instructions
-
This is how the Run Script command should look like:

This is the Python code itself :
import osimport datetimeimport timemodTimesinceEpoc = os.path.getmtime (r"$path$")modificationTime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(modTimesinceEpoc)) print(modificationTime ) And this is what the output variable contains:

