What is the function of a single asterisk (*) in an ML exclusion pattern?
The asterisk is a wildcard character that can be used in exclusion patterns to match any number of characters. However, it does not match separator characters, such as or /, which are used to separate portions of a file path. For example, the patternC:Windows**.exewill match any executable file in any subfolder of the Windows folder, but not in the Windows folder itself.
Currently there are no comments in this discussion, be the first to comment!