Skip to content Skip to main navigation Skip to footer

python获得文件创建时间和修改时间的方法

python获得文件创建时间和修改时间是如何来实现的呢?下面的内容将会通过具体的实例来演示python获得文件创建时间和修改时间的实现方法及相关技巧:

本文实例讲述了python获得文件创建时间和修改时间的方法。分享给大家供大家参考。具体如下:

这里需要用户从控制台输入文件路径

import os.path, time
import exceptions
class TypeError (Exception):
pass
if __name__ == ‘__main__’:
if (len(os.sys.argv) < 1): raise TypeError() else: print "os.sys.argv[0]: %s" % os.sys.argv[0] # os.sys.argv[0] is the current file, in this case, file_ctime.py f = os.sys.argv[0] mtime = time.ctime(os.path.getmtime(f)) ctime = time.ctime(os.path.getctime(f)) print "Last modified : %s, last created time: %s" % (mtime, ctime) [/code]
python获得文件创建时间和修改时间就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.