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

前端 未结 3 720
孤城傲影
孤城傲影 2021-02-07 01:06

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

3条回答
  •  既然无缘
    2021-02-07 01:23

    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)))
    

提交回复
热议问题