lsdir
Prototype: lsdir(path, regex, include_base)
Return type: slist
Description: Returns a list of files in the directory path matching the regular expression regex.
In case include_base is true, full paths are returned, otherwise only names
relative to the the directory are returned.
Arguments:
path: Path to base directory, in the range.+regex: Regular expression to match files or blank, in the range.*include_base: Boolean
Include the base path in the list.
Example:
vars:
"listfiles" slist => lsdir("/etc", "(passwd|shadow).*", "true");
Notes:
History: Was introduced in 3.3.0, Nova 2.2.0 (2011)
