ファイル/ディレクトリの最終アクセス時刻を取得

def get_last_modification_time(path):
    return os.path.getmtime(path)

関数説明

指定したパスの最終アクセス時刻を取得する

引数説明

パス(文字列)

返り値説明

浮動小数点数(エポック秒)
funky Feb. 8, 2024, 10:23 a.m.