¿Cómo obtengo la fecha/hora modificada de un archivo en Python? [duplicar]


Esta pregunta ya tiene una respuesta aquí:

¿Cómo obtengo la fecha/hora de modificación de un archivo en Python?

 21
Author: Torsten Marek, 2008-09-23

2 answers

os.path.getmtime(filepath)

O

os.stat(filepath).st_mtime
 38
Author: Thomas Wouters,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2008-09-23 13:35:07

Formated:

import time
print time.strftime("%m/%d/%Y %I:%M:%S %p",time.localtime(os.path.getmtime(fname)))
 19
Author: Dingo,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2011-05-24 12:06:59