Tim
0
Q:

file exist python

import os

os.path.exists("file.txt") # Or folder
33
import os.path

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

if os.path.exists('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
5
#using pathlib
from pathlib import Path

file_name = Path("file.txt")
if file_name.exists():
    print("exists") 
else:
    print("does not exist") 
3
import os 

if not os.path.exists("PATH"):
    with open("PATH", "w"):
        pass
1

New to Communities?

Join the community