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

7 lines
113 B
Python
Raw Permalink Normal View History

2013-04-10 12:38:42 -07:00
import os
2016-12-05 22:15:40 +01:00
os.path.isfile("input.txt")
os.path.isfile("/input.txt")
os.path.isdir("docs")
os.path.isdir("/docs")