「Python」getctime()メソッドでファイルの作成日時を取得するサンプル

書式
datetime.datetime.fromtimestamp(path)
システムの ctime、Unix系など一部のシステムでは最後にメタデータが変更された時刻、
Windows などその他のシステムでは path の作成時刻を返します。
使用例

# coding: utf-8
import os
import datetime

cftA = "C:\\study\\skill\\sample.csv"

ctime = os.path.getctime(cftA)
fts = datetime.datetime.fromtimestamp(ctime)
print ("ファイルの作成日時: ")
print (fts)

mtime = os.path.getmtime(cftA)
ftsp = datetime.datetime.fromtimestamp(mtime)
print ("ファイルの更新日時: ")
print (ftsp)

実行結果
>python test.py
ファイルの作成日時:
2021-03-10 07:00:34.828170
ファイルの更新日時:
2021-03-10 07:01:00.463178

Python

Posted by arkgame