file exist python

38

python check if file exists -

import os

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

how to check whether file exists in python -

import os.path

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

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

Comments

Submit
0 Comments