os.path.getmtime(path)
Return the time of last modification of path. The return value is a number giving the number of seconds since the epoch (see the time
module). Raise OSError
if the file does not exist or is inaccessible.
If os.stat_float_times()
returns True
, the result is a floating point number.
Please login to continue.