Wildcard Characters
You can use wildcard characters to specify an import filter. They can be used to represent characters in a file's name or extension.
Wildcard Character | Description |
---|---|
* | Represents zero or more missing characters. For example, govern*s.txt would find governors.txt, governments.txt, and governs.txt. |
? | Represents any single character. For example, gr?y.doc would find gray.doc and grey.doc but not gravy.doc. |
Tip: Wildcard characters may be combined. For example, br?k*.tif would find brake.tif, braked.tif, broke.tif, broker.tif, and broken.tif.