“Проверьте существование файла Python” Ответ

Проверьте, существует ли файл

import os

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

Как проверить, существует ли файл в Python

import os.path

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

Как проверить, существует ли файл pyuthon

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

Проверьте существование файла 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

Ответы похожие на “Проверьте существование файла Python”

Вопросы похожие на “Проверьте существование файла Python”

Больше похожих ответов на “Проверьте существование файла Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования