I have written some code where I get the modified time of a file using
os.path.getmtime('path')
which returns some number like 965465464.19234. I convert it to bytes and send it over socket. At the other end I read the socket and try to set this timestamp to another file using:
os.utime('path',(access_time, modified_time))
I ensure access_time remains the same while I try to set the modified_time received from socket. But utime expects an integer, so I truncate the number (for example: 965465464) and then things work fine.
Am I losing any thing by truncating? How can this be made better?