In Java you can do File.listFiles() and receive all of the files in a directory. You can then easily recurse through directory trees.
Is there an analogous way to do this in Python?
|
In Java you can do Is there an analogous way to do this in Python?
| |||
|
feedback
|
|
Yes, there is. The Python way is even better. There are three possibilities: 1) Like File.listFiles(): Python has the function os.listdir(path). It works like the Java method. 2) pathname pattern expansion with glob: The module glob contains functions to list files on the file system using Unix shell like pattern, e.g.
3) File Traversal with walk: Really nice is the os.walk function of Python. The walk method returns a generation function that recursively list all directories and files below a given starting path. An Example:
listdir and walk are documented here. glob is documented here. | |||
|
feedback
|
|
As a long-time Pythonista, I have to say the path/file manipulation functions in the std library are sub-par: they are not object-oriented and they reflect an obsolete, lets-wrap-OS-system-functions-without-thinking philosophy. I'd heartily recommend the 'path' module as a wrapper (around os, os.path, glob and tempfile if you must know): much nicer and OOPy: http://pypi.python.org/pypi/path.py/2.2 This is walk() with the path module:
| |||
|
feedback
|
|
Try "listdir()" in the os module (docs):
| |||
|
feedback
|
|
Straight from Python's Refererence Library
| |||
|
feedback
|
|
Take a look at An example from the link above...
| |||
|
feedback
|
|
Use os.path.walk if you want subdirectories as well. walk(top, func, arg)
Directory tree walk with callback function.
For each directory in the directory tree rooted at top (including top
itself, but excluding '.' and '..'), call func(arg, dirname, fnames).
dirname is the name of the directory, and fnames a list of the names of
the files and subdirectories in dirname (excluding '.' and '..'). func
may modify the fnames list in-place (e.g. via del or slice assignment),
and walk will only recurse into the subdirectories whose names remain in
fnames; this can be used to implement a filter, or to impose a specific
order of visiting. No semantics are defined for, or required of, arg,
beyond that arg is always passed to func. It can be used, e.g., to pass
a filename pattern, or a mutable object designed to accumulate
statistics. Passing None for arg is common.
| ||||
|
feedback
|
|
I'd recommend against | |||
|
feedback
|