How do I get a list of all files (and directories) in a given directory 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.
|
|
|
This is a way to traverse every file and directory in a directory tree:
|
|||||||||||||||||||||
|
|
You can use
See more os functions here: http://docs.python.org/lib/os-file-dir.html |
||||
|
|
|
|||||||||
|
|
Here's a helper function I use quite often:
|
|||
|
Try this:
|
|||
|
|
If you need globbing abilities, there's a module for that as well. For example:
will return something like:
See the documentation here. |
|||
|
|
|
I wrote a long version, with all the options I might need: http://sam.nipl.net/code/python/find.py I guess it will fit here too:
|
||||
|
|
|
||||
|
protected by jamylak Apr 11 at 8:25
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.