The FileFilterType simple type is a filter string for a file in Configuration Manager 2007. The string can contain wildcards such as * and ?.

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

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

See Also


Send comments about this topic to Microsoft.