How do I get a list of all files (and directories) in a given directory in Python?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
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.