Python 獲取檔案建立、訪問、修改時間

wpgy發表於2019-09-27

# 引數 file: 待處理檔案的絕對路徑

# retuen: list

import os

def get_file_time(file):
    return [
        os.path.getatime(file), # access
        os.path.getmtime(file), # create
        os.path.getctime(file)  # modify
    ]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31560527/viewspace-2658445/,如需轉載,請註明出處,否則將追究法律責任。

相關文章