During a running flow, I get a path to a file x.
As a defense mechanism, since it's a part of code that might crash often and rerun itself, after I get this path x, I wish to check this file and see If it was last modified in the last hour.
If it was updated/ changed in the last hour, it means this service is rerunning after a crash and I do not want to call update_file(x, new_data).
If it was updated more than an hour ago, it means I want to override this file with the new data and call update_file(x, new_data).