After a search, and some test runs both os.popen()+read() and subprocess.check_output() seem to be almost equivalent for reading out the contents of a folder. Is there a way to improve either a combination of os.popen()+read() or subprocess.check_output()? I have to ls a number of folders and read the outputs, and using either of the above is similar, but represents the major bottleneck according to profiling results.
|
|
||||
|
|
You are looking for os.listdir and/or os.walk, and perhaps also the os.stat family of functions. These are (Python bindings to) the same primitives that You should probably also read the documentation for |
||||
|
|
Why don't you just read the directory contents directly with For doing entirely directory traversals, there's |
|||||
|
|
Use glob:
The syntax is the same. e.g.
|
|||
|
|