Answers for "check if file is linux or windows python"

9

file exist python

import os.path

if os.path.exists('filename.txt'):
    print ("File exist")
else:
    print ("File not exist")
Posted by: Guest on May-13-2020
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

Code answers related to "check if file is linux or windows python"

Python Answers by Framework

Browse Popular Code Answers by Language