“Verifique a existência do arquivo python” Respostas de código

Python Verifique se o arquivo existe

import os

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

Como verificar se existe o arquivo em Python

import os.path

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

Como verificar se o arquivo existe pyuthon

import os
file_exists = os.path.exists("example.txt") # Returns boolean representing whether or not the file exists
Vivacious Vole

Verifique a existência do arquivo python

from os.path import exists

file_exists = exists(path_to_file)
#File_exists returns True if file exists otherwise returns False
print(file_exists)
FullO0

Respostas semelhantes a “Verifique a existência do arquivo python”

Perguntas semelhantes a “Verifique a existência do arquivo python”

Mais respostas relacionadas para “Verifique a existência do arquivo python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código