import os
print(str(os.stat('/home/zarkopafilis/Python/test2.py').st_mtime))
Returns large values like : 1378906011.07
Within 5 seconds I run :
import datetime
now = datetime.datetime.now()
print(str(now.second))
It returns : 1-5(Depending how fast it runs)
How can I check the time that the file was created and see if X seconds have passed by the time script runs?
You can do the following:
Now that you have stored the time difference in the variables
hours
,minutes
andseconds
you can check ifseconds >= X
where X is the number of seconds you are interested in waiting for.Hope this helps