w3resource

Python: Test whether a given path exists or not

Python Operating System Services: Exercise-12 with Solution

Write a Python program to test whether a given path exists or not. Find the filename and directory portion of the path if it exists.

Sample Solution:

Python Code :

import os
print("Test a path exists or not:")
path = r'g:\\testpath\\a.txt'
print(os.path.exists(path))
path = r'g:\\testpath\\p.txt'
print(os.path.exists(path))
print("\nFile name of the path:")
print(os.path.basename(path))
print("\nDir name of the path:")
print(os.path.dirname(path))

Sample Output:

Test a path exists or not:
False
False

File name of the path:
g:\\testpath\\p.txt

Dir name of the path:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to iterate over a root level path and print all its sub-directories and files, also loop over specified dirs and files.
Next: Write a Python program to join one or more path components together and split a given path in directory and file.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/os/python-os-exercise-12.php