本文實(shí)例講述了python獲得文件創(chuàng)建時(shí)間和修改時(shí)間的方法。分享給大家供大家參考。具體如下:
這里需要用戶從控制臺(tái)輸入文件路徑
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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) |
希望本文所述對(duì)大家的Python程序設(shè)計(jì)有所幫助。
聯(lián)系客服