“Python si existe un archivo” Código de respuesta

Python verifique si existe el archivo

import os

os.path.exists("file.txt") # Or folder, will return true or false
Duco Defiant Dogfish

Cómo verificar si existe el archivo en Python

import os.path

if os.path.isfile('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Lovely Lyrebird

Python OS si existe el archivo

import os.path

if os.path.isfile('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Stupid Stoat

Archivo existen python

import os.path

if os.path.exists('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Puzzled Penguin

Python verifique si existe el archivo

#using pathlib
from pathlib import Path

file_name = Path("file.txt")
if file_name.exists():
    print("exists") 
else:
    print("does not exist") 
Fun Bee

Python si existe un archivo

import os.path

file_exists = os.path.exists('readme.txt')

print(file_exists)
False
Intempestive Al Dente

Respuestas similares a “Python si existe un archivo”

Preguntas similares a “Python si existe un archivo”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código