python get time stamp on file in mm/dd/yyyy format

Ank picture Ank · Jun 8, 2013 · Viewed 41.2k times · Source

I'm trying to get the datestamp on the file in mm/dd/yyyy format

time.ctime(os.path.getmtime(file))

gives me detailed time stamp Fri Jun 07 16:54:31 2013

How can I display the output as 06/07/2013

Answer

Martijn Pieters picture Martijn Pieters · Jun 8, 2013

You want to use time.strftime() to format the timestamp; convert it to a time tuple first using either time.gmtime() or time.localtime():

time.strftime('%m/%d/%Y', time.gmtime(os.path.getmtime(file)))