blob: a539654572c3fd8024de7fc86a4af98be8c7ced8 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001:mod:`fnmatch` --- Unix filename pattern matching
2=================================================
3
4.. module:: fnmatch
5 :synopsis: Unix shell style filename pattern matching.
6
7
8.. index:: single: filenames; wildcard expansion
9
10.. index:: module: re
11
Éric Araujo29a0b572011-08-19 02:14:03 +020012**Source code:** :source:`Lib/fnmatch.py`
13
14--------------
15
Georg Brandl8ec7f652007-08-15 14:28:01 +000016This module provides support for Unix shell-style wildcards, which are *not* the
17same as regular expressions (which are documented in the :mod:`re` module). The
18special characters used in shell-style wildcards are:
19
20+------------+------------------------------------+
21| Pattern | Meaning |
22+============+====================================+
23| ``*`` | matches everything |
24+------------+------------------------------------+
25| ``?`` | matches any single character |
26+------------+------------------------------------+
27| ``[seq]`` | matches any character in *seq* |
28+------------+------------------------------------+
29| ``[!seq]`` | matches any character not in *seq* |
30+------------+------------------------------------+
31
Ezio Melotti1df43d32012-11-17 17:38:11 +020032For a literal match, wrap the meta-characters in brackets.
33For example, ``'[?]'`` matches the character ``'?'``.
34
Georg Brandl8ec7f652007-08-15 14:28:01 +000035.. index:: module: glob
36
37Note that the filename separator (``'/'`` on Unix) is *not* special to this
38module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses
39:func:`fnmatch` to match pathname segments). Similarly, filenames starting with
40a period are not special for this module, and are matched by the ``*`` and ``?``
41patterns.
42
43
44.. function:: fnmatch(filename, pattern)
45
Ezio Melotti2fd35922009-09-23 21:36:39 +000046 Test whether the *filename* string matches the *pattern* string, returning
47 :const:`True` or :const:`False`. If the operating system is case-insensitive,
48 then both parameters will be normalized to all lower- or upper-case before
49 the comparison is performed. :func:`fnmatchcase` can be used to perform a
50 case-sensitive comparison, regardless of whether that's standard for the
51 operating system.
Georg Brandl8ec7f652007-08-15 14:28:01 +000052
53 This example will print all file names in the current directory with the
54 extension ``.txt``::
55
56 import fnmatch
57 import os
58
59 for file in os.listdir('.'):
60 if fnmatch.fnmatch(file, '*.txt'):
61 print file
62
63
64.. function:: fnmatchcase(filename, pattern)
65
Ezio Melotti2fd35922009-09-23 21:36:39 +000066 Test whether *filename* matches *pattern*, returning :const:`True` or
67 :const:`False`; the comparison is case-sensitive.
Georg Brandl8ec7f652007-08-15 14:28:01 +000068
69
70.. function:: filter(names, pattern)
71
72 Return the subset of the list of *names* that match *pattern*. It is the same as
73 ``[n for n in names if fnmatch(n, pattern)]``, but implemented more efficiently.
74
75 .. versionadded:: 2.2
76
77
78.. function:: translate(pattern)
79
80 Return the shell-style *pattern* converted to a regular expression.
81
Georg Brandle8f1b002008-03-22 22:04:10 +000082 Example:
Georg Brandl8ec7f652007-08-15 14:28:01 +000083
84 >>> import fnmatch, re
85 >>>
86 >>> regex = fnmatch.translate('*.txt')
87 >>> regex
R David Murray10324f82015-05-02 15:09:22 -040088 '.*\\.txt\\Z(?ms)'
Georg Brandl8ec7f652007-08-15 14:28:01 +000089 >>> reobj = re.compile(regex)
Ezio Melotti2fd35922009-09-23 21:36:39 +000090 >>> reobj.match('foobar.txt')
Georg Brandl8ec7f652007-08-15 14:28:01 +000091 <_sre.SRE_Match object at 0x...>
92
93
94.. seealso::
95
96 Module :mod:`glob`
97 Unix shell-style path expansion.