2020年9月18日金曜日

ファイルの最終更新時間をPythonで出力する

import glob

import os

import time


file = glob.glob('.*')[0]


# filename

print(os.path.basename(file))


# os.path.getmtime()  # last modified time

print(os.path.getmtime(file))


# time.ctime() UNIX時間から変換する

print("last modified: {}".format(time.ctime(os.path.getmtime(file))))


"""

.ipynb_checkpoints

1600315202.9459374

last modified: Thu Sep 17 13:00:02 2020

"""

0 件のコメント:

コメントを投稿