Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | :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 Araujo | 29a0b57 | 2011-08-19 02:14:03 +0200 | [diff] [blame] | 12 | **Source code:** :source:`Lib/fnmatch.py` |
| 13 | |
| 14 | -------------- |
| 15 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 16 | This module provides support for Unix shell-style wildcards, which are *not* the |
| 17 | same as regular expressions (which are documented in the :mod:`re` module). The |
| 18 | special 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 Melotti | 1df43d3 | 2012-11-17 17:38:11 +0200 | [diff] [blame] | 32 | For a literal match, wrap the meta-characters in brackets. |
| 33 | For example, ``'[?]'`` matches the character ``'?'``. |
| 34 | |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 35 | .. index:: module: glob |
| 36 | |
| 37 | Note that the filename separator (``'/'`` on Unix) is *not* special to this |
| 38 | module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses |
| 39 | :func:`fnmatch` to match pathname segments). Similarly, filenames starting with |
| 40 | a period are not special for this module, and are matched by the ``*`` and ``?`` |
| 41 | patterns. |
| 42 | |
| 43 | |
| 44 | .. function:: fnmatch(filename, pattern) |
| 45 | |
Ezio Melotti | 2fd3592 | 2009-09-23 21:36:39 +0000 | [diff] [blame] | 46 | 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 Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 52 | |
| 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 Melotti | 2fd3592 | 2009-09-23 21:36:39 +0000 | [diff] [blame] | 66 | Test whether *filename* matches *pattern*, returning :const:`True` or |
| 67 | :const:`False`; the comparison is case-sensitive. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 68 | |
| 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 Brandl | e8f1b00 | 2008-03-22 22:04:10 +0000 | [diff] [blame] | 82 | Example: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 83 | |
| 84 | >>> import fnmatch, re |
| 85 | >>> |
| 86 | >>> regex = fnmatch.translate('*.txt') |
| 87 | >>> regex |
R David Murray | 10324f8 | 2015-05-02 15:09:22 -0400 | [diff] [blame] | 88 | '.*\\.txt\\Z(?ms)' |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 89 | >>> reobj = re.compile(regex) |
Ezio Melotti | 2fd3592 | 2009-09-23 21:36:39 +0000 | [diff] [blame] | 90 | >>> reobj.match('foobar.txt') |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 91 | <_sre.SRE_Match object at 0x...> |
| 92 | |
| 93 | |
| 94 | .. seealso:: |
| 95 | |
| 96 | Module :mod:`glob` |
| 97 | Unix shell-style path expansion. |