Ejemplo 1: Python comprueba si un archivo está vacío
import os
if os.stat("yourfile.extension").st_size == 0:
#note: file has to be in same directory as python script#
print('empty')
Ejemplo 2: Python comprueba si el archivo tiene contenido
>>> import os
>>> os.stat("file").st_size == 0
True
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)