Saber si un archivo existe en python.

Iniciado por desnight, 3 Mayo 2008, 17:48 PM

0 Miembros y 1 Visitante están viendo este tema.

desnight

¿Sabes si hay algun comando en python parecido al "exist" de batch?

Saludos.
Que es mi barco mi tesoro,
que es mi dios la libertad,
mi ley, la fuerza y el viento,
mi única patria, la mar.

dooque

import os.path

os.path.isfile(nombre_del_archivo)

esa te devuelvetrue si la cadena q toma como argumento es un archivo! si no existe te devuelvw false supongo jeje, si eso no te sirve proba usar la funcion stat() que esta en el modulo os

saludos
Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it.  -- Kernighan