“Python Obtenga el último tiempo de modificación del archivo” Código de respuesta

Python obtenga el archivo de fecha última modificado

import os, time
# Get file's Last modification time stamp only in terms of seconds since epoch 
modTimesinceEpoc = os.path.getmtime(filePath)
# Convert seconds since epoch to readable timestamp
modificationTime = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(modTimesinceEpoc))
print("Last Modified Time : ", modificationTime )
Cheerful Chipmunk

Python Obtenga el último tiempo de modificación del archivo

import os
time = os.path.getmtime("file.txt")

print(time) # 1600113737.82
VeteranKilo

Respuestas similares a “Python Obtenga el último tiempo de modificación del archivo”

Preguntas similares a “Python Obtenga el último tiempo de modificación del archivo”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código