How do I get a list of all files (and directories) in a given directory in Python?
|
6
|
|
|
|
|
|
This is a way to traverse every file and directory in a directory tree:
|
||
|
|
|
|
You can use os.listdir(path). See more os functions here: http://docs.python.org/lib/os-file-dir.html |
||
|
|
|
|
|
||
|
|
|
Try this:
|
||
|
|
|
|
Here's a helper function I use quite often:
|
||
|
|
