IncludePattern¶
Description
Use this property to include only files with a name matching at least one of the defined pattern(s).
Syntax
property IncludePattern: <String>;
Example
$SOS.Filter.IncludePattern = "*.exe;*.bat"
SOS.Filter.IncludePattern = "*.exe;*.bat"
The directory tree and all exports will include only files with the extensions “.exe” or “.bat”.
Remarks
The wildcards “*” (any char) and “?” (any one single char) may be used in the patterns. Multiple file name patterns are separated by “;”.