I only find a predicate time_file/2 to access the last modified date of a file.
time_file(+File, -Time)
Unify the last modification time of File with Time.
http://www.swi-prolog.org/pldoc/doc_for?object=time_file/2
How could I explicitly set the last modified date of an existing file to some time value?
Bye