Share via


FolderFilterType Simple Type

Applies To: System Center Configuration Manager 2007, System Center Configuration Manager 2007 R2, System Center Configuration Manager 2007 R3, System Center Configuration Manager 2007 SP1, System Center Configuration Manager 2007 SP2

In Configuration Manager 2007, the FolderFilterType simple type is a filter string for a folder search.

The string can contain wildcards such as * and ?.

‘*’ matches 0 or more characters. (file* will match file, file1, file123, file123.txt etc)

‘?’ matches exactly 1 character. (file? will match file1, file2 but will not match file or file123)

<xs:simpleType name="FolderFilterType">
    <xs:restriction
        base="string"
    >
        <xs:minLength
            value="1"
         />
    </xs:restriction>
</xs:simpleType>

See Also

Concepts

Authoring Desired Configuration Management Configuration Baselines and Configuration Items