Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python check if file exists

#using pathlib
from pathlib import Path

file_name = Path("file.txt")
if file_name.exists():
    print("exists") 
else:
    print("does not exist") 
Source by linuxize.com #
 
PREVIOUS NEXT
Tagged: #python #check #file #exists
ADD COMMENT
Topic
Name
4+2 =