如何使用Python獲取文件的創建日期

可以使用os.path和時間庫訪問文件的創建日期。

句法:

import os.path, time

time.ctime(os.path.getctime("test.txt"))

此代碼示例使用os.path庫訪問test.txt文件的時間。 使用時間模塊格式化該時間。 結果字符串將寫入輸出中以進行渲染。

import os.path, time

print("created: %s" % time.ctime(os.path.getctime("test.txt")))

輸出結果為:

$ py test.py
created: Wed Jul  4 14:42:37 2018

參考文獻:

Python