Checking whether a file or directory exists

If you want to check whether a file exists in the current working path directory, you can use the os.path.exists() function, passing the file or directory you want to check as the parameter:

 >>> import os
>>> os.path.exists("./main.py")
True
>>> os.path.exists("./not_exists.py")
False
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.138.123.106