find package:shelly

List directory recursively (like the POSIX utility "find"). listing is relative if the path given is relative. If you want to filter out some results or fold over them you can do that with the returned files. A more efficient approach is to use one of the other find functions.
see find
find that filters out directories as it finds. Filtering out directories can make a find much more efficient by avoiding entire trees of files.
Similar to findWhen, but also filter out directories. Alternatively, similar to findDirFilter, but also filter out files. Filtering out directories makes the find much more efficient.
Fold an arbitrary folding function over files froma a find. Like findWhen but use a more general fold rather than a filter.
Like findDirFilterWhen but use a folding function rather than a filter. The most general finder: you likely want a more specific one.
find that filters the found files as it finds. Files must satisfy the given filter to be returned in the result.