Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Python by (47.6k points)

How can I list all files of a directory in Python and add them to a list?

1 Answer

0 votes
by (106k points)
edited by

For listing all Python files in directory you can use the glob module, as it does pattern matching and expansion.

import glob 

print(glob.glob("/home/adam/*.txt"))

To know more about this you can have a look at the following video tutorial:-

Related questions

+1 vote
1 answer
0 votes
1 answer
0 votes
1 answer
asked Sep 16, 2019 in Python by Sammy (47.6k points)
+1 vote
2 answers

Browse Categories

...