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