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. If the path exist find the filename and directory portion of the said path.

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 Python skills with w3resource's quiz


Python: Tips of the Day

Python: Unknown Arguments Using *arguments

If your function can take in any number of arguments then add a * in front of the parameter name:

def myfunc(*arguments):
 for a in arguments:
   print a
myfunc(a)
myfunc(a,b)
myfunc(a,b,c)