findFiles -- find files recursively
Synopsis
-
- Usage:
findFiles p
-
Inputs:
-
p, a string or a list, a directory or list of directories
-
Optional inputs:
-
Exclude => ..., default value {}, a list of strings, regarded as regular expressions; files found whose paths have base filenames matching one of these regular expressions will be excluded from the results
-
FollowLinks => a Boolean value, default value false, whether to follow symbolic links to directories and to report on files found there
-
Outputs:
-
a list of paths to files found in the directory tree(s) rooted at the locations(s) specified by p
Ways to use findFiles:
-
findFiles(List)
-
findFiles(String)