walk
os.walk
object walk
Recursively walks the given folder and returns the paths of every file or folder within.
You can pass in a skip
callback to skip files or folders you are not interested in. This can avoid walking entire parts of the folder hierarchy, saving time as compared to filtering them after the fact.
By default, the paths are returned as a pre-order traversal: the enclosing folder is occurs first before any of it's contents. You can pass in preOrder = false
to turn it into a post-order traversal, such that the enclosing folder occurs last after all it's contents.
os.walk
returns but does not follow symlinks; pass in followLinks = true
to override that behavior. You can also specify a maximum depth you wish to walk via the maxDepth
parameter.
Attributes
- Graph
-
- Supertypes
- Self type
-
walk.type
Members list
In this article