How can I find all files in directory with the extension .txt in python?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
you can use
or simple
or if you want to traverse directory
|
|||||||||||||||||
|
|
Use glob.
|
|||
|
|
|
Something like that should do the job
|
|||
|
Something like this will work:
|
|||
|
|
|
I like os.walk():
Or with generators:
|
|||
|
|
|
Here's more versions of the same that produce slightly different results: glob.iglob()
glob.glob1()
fnmatch.filter()
|
|||||||
|
|
|||
|
|
|
path.py is another alternative: https://github.com/jaraco/path.py
|
|||
|
|