import os.path
os.path.exists(path)
import os.path
>>> print os.path.isfile("/etc/password.txt")
True
>>> print os.path.isfile("/etc")
False
>>> print os.path.exists("/etc/password.txt")
True
>>> print os.path.exists("/etc")
True
try:
with open('path/to/file,'r') as fp:
fp.readline()
print('Файл найден!')
except:
print('Файл не найден!')
>>> from pathlib import Path
>>> d = Path('/bin')
>>> q = d / 'cat'
>>> q.exists()
Out[6]:
True
>>> q.is_dir()
Out[7]:
False
>>> Path('/bin/cat').exists()
Out[8]:
True