[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Indicates whether the file name matches the specified Windows-style file system mask.
Source position: masks.pas line 379
function MatchesWindowsMask( |
const FileName: string; |
const Mask: string; |
CaseSensitive: Boolean = False; |
aOpcodesAllowed: TMaskOpCodes = DefaultMaskOpCodes; |
aWindowsQuirksAllowed: TWindowsQuirks = DefaultWindowsQuirks |
):Boolean; |
const FileName: string; |
const Mask: string; |
Options: TMaskOptions |
):Boolean; |
FileName |
|
File name compared to the mask value. |
Mask |
|
Mask used to perform the comparison. |
CaseSensitive |
|
True when case sensitivity should be used in the comparison. |
True when the file name matches the mask value using the specified options.
FileName |
|
File name compared to the mask value. |
Mask |
|
Mask used to perform the comparison. |
Options |
|
Set of options enabled for the comparison. |
MatchesWindowsMask is an overloaded Boolean function used to determine if the file name specified in FileName matches the specified Mask. Mask can contain a Windows-style file mask which uses the following wildcards:
CaseSensitive indicates whether case sensitivity is used when comparing the file name to the mask value.
Options contains a set of zero or more TMaskOption values enabled for the comparison. The Options argument allows enabling or disabling set notation in the mask value. Specifying moDisableSets in the Options parameter will disable interpreting the ' [' character as the beginning of a set in the specified mask. Use an empty set (' []') when options from the TMaskOption enumeration are not needed.
For example:
MatchesWindowsMask('[x]','[x]',[moDisableSets]); // returns True
MatchesWindowsMask creates a TMask instance which is used to compare the file name to the mask using the specified options. Values in Mask and Options are passed as arguments the TMask constructor. The MatchesWindowsMask method in the TMask instance is called using FileName as an argument, and gets the return value for the function.
Remark: | The overloaded variant which includes a TMaskOptions parameter has been marked as deprecated in version 2.3. It will be removed in version 2.5. |
|
Masks Overview. |
Version 4.0 | Generated 2025-05-03 | Home |