python以mm / dd / yyyy-HH:MM格式获取文件上的时间戳

时间:2016-07-30 04:11:16

标签: python date unix-timestamp

我正在尝试以mm-dd-yyyy-hh:mm格式获取文件上的日期戳。

select counterparty, count(*)
  from tbl
 where counterparty is not null -- add this filter
 group by counterparty

给我详细的时间戳:

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

如何将输出显示为:

Fri Jun 07 16:54:31 2013

这非常类似于: python get time stamp on file in mm/dd/yyyy format

这样做了我想要的一半,但我无法添加时间和分钟。

06-07-2013-16:54

1 个答案:

答案 0 :(得分:2)

刚刚找到它,我需要添加%H:%M,如下所示:

time.strftime('%m-%d-%Y-%H:%M', time.gmtime(os.path.getmtime())