diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-22 06:50:55 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-22 06:50:55 -0700 |
commit | 51cdc93b40dbebd65b14e931385cb3bd354a8082 (patch) | |
tree | 2d3c7f363b1be5966e0a92d2c2a4b23075dcddcc /txr.1 | |
parent | b2735927060a866ff863370a20f00f3a5e73ef38 (diff) | |
download | txr-51cdc93b40dbebd65b14e931385cb3bd354a8082.tar.gz txr-51cdc93b40dbebd65b14e931385cb3bd354a8082.tar.bz2 txr-51cdc93b40dbebd65b14e931385cb3bd354a8082.zip |
Support list of paths in ftw.
* ftw.c (ftw_wrap): Handle case when dirpath is a list,
by recursion.
* txr.1: Documented.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -38020,6 +38020,12 @@ defaults to zero, and .meta nopenfd defaults to 20. +Also note that, unlike in the C function, multiple +paths may be processed by passing a list +for the +.meta path +argument. + The .code nftw function walks the filesystem, as directed by the @@ -38102,6 +38108,47 @@ is terminated by a return value from .metn callback-func , then that value is returned. Such a value is always a nonzero integer. +If the +.meta path +passed to +.code ftw +is a list, then all of the paths contained in that +list are walked, as if by recursive application of +.code ftw +to each element of the list taken as the +.meta path +argument, the other argument values being the same. +The traversal stops when any recursive +invocation of +.code ftw +returns a value other than +.codn t +or +.codn nil , +and that value is returned. If +.code t +or +.code nil +is returned, the traversal continues with the +application of +.code ftw +to the next list element, if any. +If the list is completely traversed, and some recursive +invocations of +.code ftw +return +.codn t , +then the return value is +.codn t . +If all recursive invocations return +.code nil +then +.code nil +is returned. +If the list is empty, +.code t +is returned. + The .meta callback-func may terminate the traversal by a nonlocal exit, such as by throwing |