Alias for Filter delegate. Accepts a FilePath & a bool as arguments and returns a bool.
Return all the errors found in the last scan
Return all the files found in the last scan
Return all directories found in the last scan
Sweep a set of files and directories from the given parent path, with no filtering applied
Sweep a set of files and directories from the given parent path, where the files are filtered by the given suffix
Sweep a set of files and directories from the given parent path, where the files are filtered by the provided delegate
This module is deprecated because it doesn't support file globbing or regexes for matching files and because it ignores folders that it doesn't recurse into (a non-recursive scan will never return any folders).
Recursively scan files and directories, adding filtered files to an output structure as we go. This can be used to produce a list of subdirectories and the files contained therein. The following example lists all files with suffix ".d" located via the current directory, along with the folders containing them:
This is unlikely the most efficient method to scan a vast number of files, but operates in a convenient manner.