RosettaCodeData/Task/Check-that-file-exists/Python/check-that-file-exists.py

7 lines
113 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import os
os.path.isfile("input.txt")
os.path.isfile("/input.txt")
os.path.isdir("docs")
os.path.isdir("/docs")