“Sprawdź istnienie pliku Python” Kod odpowiedzi

Python Sprawdź, czy plik istnieje

import os

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

Jak sprawdzić, czy plik istnieje w Python

import os.path

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

Jak sprawdzić, czy plik istnieje Pyuthon

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

Sprawdź istnienie pliku 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

Odpowiedzi podobne do “Sprawdź istnienie pliku Python”

Pytania podobne do “Sprawdź istnienie pliku Python”

Więcej pokrewnych odpowiedzi na “Sprawdź istnienie pliku Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu