Python でファイルの最終更新日(更新日時)のデータを取得するには、os.path.getmtime() 関数を使う。
この関数で得られる更新日時(戻り値)は、基準時刻となる1970年1月1日0時0分0秒から経過した時間を秒数で取得したものだ。
os.path.getmtime() 関数の書式と使用例
os.path.getmtime() 関数の書式は以下の通り。
os.path.getmtime(ファイル名)
os.path.getmtime() 関数は、os モジュールに含まれるため、あらかじめ os モジュールをインポートしておく必要がある。
os.path.getmtime() 関数の使用例は以下の通り。
import os os.path.getmtime('pic/example.jpg')
この例では、picフォルダにある example.jpg というファイルの更新日時を取得している。