blob: e0434b0c1905e15929edeb626d42d8293dc281e6 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +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
Raymond Hettinger10480942011-01-10 03:26:08 +000012**Source code:** :source:`Lib/fnmatch.py`
13
Raymond Hettinger4f707fd2011-01-10 19:54:11 +000014--------------
15
Georg Brandl116aa622007-08-15 14:28:22 +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 Melottia39a22d2012-11-17 17:38:11 +020032For a literal match, wrap the meta-characters in brackets.
33For example, ``'[?]'`` matches the character ``'?'``.
34
Georg Brandl116aa622007-08-15 14:28:22 +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 Melottiec5c8b82009-09-23 21:42:25 +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 Brandl116aa622007-08-15 14:28:22 +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'):
Georg Brandl6911e3c2007-09-04 07:15:32 +000061 print(file)
Georg Brandl116aa622007-08-15 14:28:22 +000062
63
64.. function:: fnmatchcase(filename, pattern)
65
Ezio Melottiec5c8b82009-09-23 21:42:25 +000066 Test whether *filename* matches *pattern*, returning :const:`True` or
67 :const:`False`; the comparison is case-sensitive.
Georg Brandl116aa622007-08-15 14:28:22 +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
Georg Brandl116aa622007-08-15 14:28:22 +000075
76.. function:: translate(pattern)
77
78 Return the shell-style *pattern* converted to a regular expression.
79
Christian Heimesfe337bf2008-03-23 21:54:12 +000080 Example:
Georg Brandl116aa622007-08-15 14:28:22 +000081
82 >>> import fnmatch, re
83 >>>
84 >>> regex = fnmatch.translate('*.txt')
85 >>> regex
86 '.*\\.txt$'
87 >>> reobj = re.compile(regex)
Ezio Melottiec5c8b82009-09-23 21:42:25 +000088 >>> reobj.match('foobar.txt')
Georg Brandl116aa622007-08-15 14:28:22 +000089 <_sre.SRE_Match object at 0x...>
90
91
Georg Brandl116aa622007-08-15 14:28:22 +000092.. seealso::
93
94 Module :mod:`glob`
95 Unix shell-style path expansion.