Python: List only directories, files and all directories, files in a specified path
Python Operating System Services: Exercise-2 with Solution
Write a Python program to list only directories, files and all directories, files in a specified path.
Sample Solution:
Python Code :
import os
path ='g:\\testpath\\'
print("Only directories:")
print([ name for name in os.listdir(path) if os.path.isdir(os.path.join(path, name)) ])
print("\nOnly files:")
print([ name for name in os.listdir(path) if not os.path.isdir(os.path.join(path, name)) ])
print("\nAll directories and files :")
print([ name for name in os.listdir(path)])
Sample Output:
Only directories: ['a', 'b', 'c', 'd', 'e', 'f'] Only files: ['p.txt', 'q.txt', 'r.docx', 's.xlsx'] All directories and files : ['a', 'b', 'c', 'd', 'e', 'f', 'p.txt', 'q.txt', 'r.docx', 's.xlsx']
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to get the name of the operating system (Platform independent), information of current operating system, current working directory, print files and directories in the current directory and raises error in the case of invalid or inaccessible file names and paths.
Next: Write a Python program to scan a specified directory and identify the sub directories and files.
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)
- New Content published on w3resource :
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework