NAME
fnmatch — match a
filename string or a pathname
SYNOPSIS
#include
<fnmatch.h>
int fnmatch(const char *pattern, const char *string, int flags);
DESCRIPTION
The fnmatch () function shall match
patterns as described in XCU
2.14.1
Patterns Matching a Single Character and
2.14.2
Patterns Matching Multiple Characters. It checks the string specified by
the string argument to see if it matches the pattern
specified by the pattern argument.
The flags argument shall modify the
interpretation of pattern and string. It
is the bitwise-inclusive OR of zero or more of the flags defined in
<fnmatch.h>. If the FNM_PATHNAME flag is set
in flags, then a <slash> character (
‘/’) in string shall
be explicitly matched by a <slash> in pattern; it
shall not be matched by either the <asterisk> or <question-mark>
special characters, nor by a bracket expression. If the FNM_PATHNAME flag is
not set, the <slash> character shall be treated as an ordinary
character.
If FNM_NOESCAPE is not set in flags, a <backslash> character can be used as an escape character as described in XCU 2.14.1 Patterns Matching a Single Character. If pattern ends with an unescaped <backslash>, the behavior is unspecified. If FNM_NOESCAPE is set, a <backslash> character shall be treated as an ordinary character.
If FNM_PERIOD is set in flags, then a leading
<period> ( ‘’.) in
string shall match a <period> in
pattern; as described by rule 2 in XCU
2.14.3
Patterns Used for Filename Expansion where the location of
"leading" is indicated by the value of FNM_PATHNAME:
- If FNM_PATHNAME is set, a <period> is "leading" if it is the first character in string or if it immediately follows a <slash>.
- If FNM_PATHNAME is not set, a <period> is "leading" only if it is the first character of string.
If FNM_PERIOD is not set, then no special restrictions are placed on matching a period.
If FNM_CASEFOLD or FNM_IGNORECASE is set, string and pattern shall be compared in a case-insensitive manner. See XBD V1_chap04(7).
RETURN VALUE
If string matches the pattern specified by
pattern, then fnmatch () shall
return 0. If there is no match, fnmatch () shall
return FNM_NOMATCH, which is defined in
<fnmatch.h>. If an error occurs,
fnmatch () shall return another non-zero value.
ERRORS
No errors are defined.
EXAMPLES
None.
APPLICATION USAGE
The fnmatch () function has two major
uses. It could be used by an application or utility that needs to read a
directory and apply a pattern against each entry. The
find(1) utility is an example of this. It can also be used
by the pax(1) utility to process its
pattern operands, or by applications that need to match
strings in a similar manner.
The name fnmatch () is
intended to imply
filename match,
rather than
pathname
match. The default action of this function is to match filename strings,
rather than pathnames, since it gives no special significance to the
<slash> character. With the FNM_PATHNAME flag,
fnmatch () does match pathnames, but without tilde
expansion, parameter expansion, or special treatment for a <period> at
the beginning of a filename.
RATIONALE
This function replaced the REG_FILENAME flag of regcomp(3) in early proposals of this volume of POSIX.1-2024. It provides virtually the same functionality as the regcomp(3) and regexec(3) functions using the REG_FILENAME and REG_FSLASH flags (the REG_FSLASH flag was proposed for regcomp(3), and would have had the opposite effect from FNM_PATHNAME), but with a simpler function and less system overhead.
FUTURE DIRECTIONS
None.
SEE ALSO
XBD <fnmatch.h>
CHANGE HISTORY
First released in Issue 4. Derived from the ISO POSIX-2 standard.
Issue 5
Moved from POSIX2 C-language Binding to BASE.
Issue 7
POSIX.1-2008, Technical Corrigendum 1, XSH/TC1-2008/0154 [291] and XSH/TC1-2008/0155 [291] are applied.
POSIX.1-2008, Technical Corrigendum 2, XSH/TC2-2008/0121 [806] is applied.
Issue 8
Austin Group Defect 1031 is applied, adding FNM_CASEFOLD and FNM_IGNORECASE.
Austin Group Defect 1287 is applied, changing the description of how <backslash> is handled (if FNM_NOESCAPE is not set) to refer to XCU 2.14.1 Patterns Matching a Single Character.
Austin Group Defect 1444 is applied, correcting cross-references to wordexp(3).