web-dev-qa-db-ja.com

古いファイルをチェックするための日付の比較

ファイルが特定の時間(2日など)より古いかどうかを確認したい。

私は次のような方法でファイルの作成時間を取得することができました。

>>> import os.path, time
>>> fileCreation = os.path.getctime(filePath)
>>> time.ctime(os.path.getctime(filePath))
'Mon Aug 22 14:20:38 2011'

これが2日より古いかどうかを確認するにはどうすればよいですか?

私はLinuxで作業していますが、クロスプラットフォームソリューションの方が優れています。乾杯!

17
Stefano
now = time.time()
twodays_ago = now - 60*60*24*2 # Number of seconds in two days
if fileCreation < twodays_ago:
    print "File is more than two days old"
22
Erik Forsberg

私は知っています、それは古い質問です。しかし、私は似たようなものを探していて、この代替ソリューションを思いつきました:

from os import path
from datetime import datetime, timedelta

two_days_ago = datetime.now() - timedelta(days=2)
filetime = datetime.fromtimestamp(path.getctime(file_path))

if filetime < two_days_ago:
  print "File is more than two days old."
22
Eduardo