Answers for "how to check if the file exists in a directory python"

6

how to check if file exists pyuthon

import os
file_exists = os.path.exists("example.txt") # Returns boolean representing whether or not the file exists
Posted by: Guest on September-15-2020
2

check if a file exists

>>> import os
>>> os.path.isfile("d:\Package1\package1\fibo.py")
True
>>> os.path.isfile("d:/Package1/package1/fibo.py")
True
>>> os.path.isfile("d:\nonexisting.txt")
Posted by: Guest on August-25-2020

Code answers related to "how to check if the file exists in a directory python"

Python Answers by Framework

Browse Popular Code Answers by Language