blob: 8a88f8ce9ab318bd21b83248bf0be9ddb114248c [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`filecmp` --- File and Directory Comparisons
2=================================================
3
4.. module:: filecmp
5 :synopsis: Compare files efficiently.
6.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>
7
Raymond Hettinger10480942011-01-10 03:26:08 +00008**Source code:** :source:`Lib/filecmp.py`
Georg Brandl116aa622007-08-15 14:28:22 +00009
Raymond Hettinger4f707fd2011-01-10 19:54:11 +000010--------------
11
Georg Brandl116aa622007-08-15 14:28:22 +000012The :mod:`filecmp` module defines functions to compare files and directories,
Georg Brandl9afde1c2007-11-01 20:32:30 +000013with various optional time/correctness trade-offs. For comparing files,
14see also the :mod:`difflib` module.
Georg Brandl116aa622007-08-15 14:28:22 +000015
16The :mod:`filecmp` module defines the following functions:
17
18
Georg Brandl71515ca2009-05-17 12:29:12 +000019.. function:: cmp(f1, f2, shallow=True)
Georg Brandl116aa622007-08-15 14:28:22 +000020
21 Compare the files named *f1* and *f2*, returning ``True`` if they seem equal,
22 ``False`` otherwise.
23
Eli Benderskye431ed22012-07-24 19:47:34 +030024 If *shallow* is true, files with identical :func:`os.stat` signatures are
25 taken to be equal. Otherwise, the contents of the files are compared.
Georg Brandl116aa622007-08-15 14:28:22 +000026
27 Note that no external programs are called from this function, giving it
28 portability and efficiency.
29
30
Georg Brandl71515ca2009-05-17 12:29:12 +000031.. function:: cmpfiles(dir1, dir2, common, shallow=True)
Georg Brandl116aa622007-08-15 14:28:22 +000032
Benjamin Petersone0124bd2009-03-09 21:04:33 +000033 Compare the files in the two directories *dir1* and *dir2* whose names are
34 given by *common*.
Georg Brandl116aa622007-08-15 14:28:22 +000035
Benjamin Petersone0124bd2009-03-09 21:04:33 +000036 Returns three lists of file names: *match*, *mismatch*,
37 *errors*. *match* contains the list of files that match, *mismatch* contains
38 the names of those that don't, and *errors* lists the names of files which
39 could not be compared. Files are listed in *errors* if they don't exist in
40 one of the directories, the user lacks permission to read them or if the
41 comparison could not be done for some other reason.
42
43 The *shallow* parameter has the same meaning and default value as for
Georg Brandl116aa622007-08-15 14:28:22 +000044 :func:`filecmp.cmp`.
45
Benjamin Petersone0124bd2009-03-09 21:04:33 +000046 For example, ``cmpfiles('a', 'b', ['c', 'd/e'])`` will compare ``a/c`` with
47 ``b/c`` and ``a/d/e`` with ``b/d/e``. ``'c'`` and ``'d/e'`` will each be in
48 one of the three returned lists.
49
50
Georg Brandl116aa622007-08-15 14:28:22 +000051.. _dircmp-objects:
52
53The :class:`dircmp` class
54-------------------------
55
Georg Brandl71515ca2009-05-17 12:29:12 +000056.. class:: dircmp(a, b, ignore=None, hide=None)
Georg Brandl116aa622007-08-15 14:28:22 +000057
58 Construct a new directory comparison object, to compare the directories *a* and
59 *b*. *ignore* is a list of names to ignore, and defaults to ``['RCS', 'CVS',
60 'tags']``. *hide* is a list of names to hide, and defaults to ``[os.curdir,
61 os.pardir]``.
62
Senthil Kumaran28a9f212012-07-22 19:12:58 -070063 The :class:`dircmp` class compares files by doing *shallow* comparisons
64 as described for :func:`filecmp.cmp`.
65
Benjamin Petersone41251e2008-04-25 01:59:09 +000066 The :class:`dircmp` class provides the following methods:
Georg Brandl116aa622007-08-15 14:28:22 +000067
68
Benjamin Petersone41251e2008-04-25 01:59:09 +000069 .. method:: report()
Georg Brandl116aa622007-08-15 14:28:22 +000070
Eli Benderskyf7a54a02012-07-24 20:44:48 +030071 Print (to :data:`sys.stdout`) a comparison between *a* and *b*.
Georg Brandl116aa622007-08-15 14:28:22 +000072
73
Benjamin Petersone41251e2008-04-25 01:59:09 +000074 .. method:: report_partial_closure()
Georg Brandl116aa622007-08-15 14:28:22 +000075
Benjamin Petersone41251e2008-04-25 01:59:09 +000076 Print a comparison between *a* and *b* and common immediate
77 subdirectories.
Georg Brandl116aa622007-08-15 14:28:22 +000078
79
Benjamin Petersone41251e2008-04-25 01:59:09 +000080 .. method:: report_full_closure()
Georg Brandl116aa622007-08-15 14:28:22 +000081
Benjamin Petersone41251e2008-04-25 01:59:09 +000082 Print a comparison between *a* and *b* and common subdirectories
83 (recursively).
Georg Brandl116aa622007-08-15 14:28:22 +000084
Senthil Kumaran28a9f212012-07-22 19:12:58 -070085 The :class:`dircmp` class offers a number of interesting attributes that may be
Benjamin Petersone41251e2008-04-25 01:59:09 +000086 used to get various bits of information about the directory trees being
87 compared.
Georg Brandl116aa622007-08-15 14:28:22 +000088
Benjamin Petersone41251e2008-04-25 01:59:09 +000089 Note that via :meth:`__getattr__` hooks, all attributes are computed lazily,
90 so there is no speed penalty if only those attributes which are lightweight
91 to compute are used.
Georg Brandl116aa622007-08-15 14:28:22 +000092
93
R David Murray2b209cd2012-08-14 21:40:13 -040094 .. attribute:: left
95
96 The directory *a*.
97
98
99 .. attribute:: right
100
101 The directory *b*.
102
103
Benjamin Petersone41251e2008-04-25 01:59:09 +0000104 .. attribute:: left_list
Georg Brandl116aa622007-08-15 14:28:22 +0000105
Benjamin Petersone41251e2008-04-25 01:59:09 +0000106 Files and subdirectories in *a*, filtered by *hide* and *ignore*.
Georg Brandl116aa622007-08-15 14:28:22 +0000107
108
Benjamin Petersone41251e2008-04-25 01:59:09 +0000109 .. attribute:: right_list
Georg Brandl116aa622007-08-15 14:28:22 +0000110
Benjamin Petersone41251e2008-04-25 01:59:09 +0000111 Files and subdirectories in *b*, filtered by *hide* and *ignore*.
Georg Brandl116aa622007-08-15 14:28:22 +0000112
113
Benjamin Petersone41251e2008-04-25 01:59:09 +0000114 .. attribute:: common
Georg Brandl116aa622007-08-15 14:28:22 +0000115
Benjamin Petersone41251e2008-04-25 01:59:09 +0000116 Files and subdirectories in both *a* and *b*.
Georg Brandl116aa622007-08-15 14:28:22 +0000117
118
Benjamin Petersone41251e2008-04-25 01:59:09 +0000119 .. attribute:: left_only
Georg Brandl116aa622007-08-15 14:28:22 +0000120
Benjamin Petersone41251e2008-04-25 01:59:09 +0000121 Files and subdirectories only in *a*.
Georg Brandl116aa622007-08-15 14:28:22 +0000122
123
Benjamin Petersone41251e2008-04-25 01:59:09 +0000124 .. attribute:: right_only
Georg Brandl116aa622007-08-15 14:28:22 +0000125
Benjamin Petersone41251e2008-04-25 01:59:09 +0000126 Files and subdirectories only in *b*.
Georg Brandl116aa622007-08-15 14:28:22 +0000127
128
Benjamin Petersone41251e2008-04-25 01:59:09 +0000129 .. attribute:: common_dirs
Georg Brandl116aa622007-08-15 14:28:22 +0000130
Benjamin Petersone41251e2008-04-25 01:59:09 +0000131 Subdirectories in both *a* and *b*.
Georg Brandl116aa622007-08-15 14:28:22 +0000132
133
Benjamin Petersone41251e2008-04-25 01:59:09 +0000134 .. attribute:: common_files
Georg Brandl116aa622007-08-15 14:28:22 +0000135
Benjamin Petersone41251e2008-04-25 01:59:09 +0000136 Files in both *a* and *b*
Georg Brandl116aa622007-08-15 14:28:22 +0000137
138
Benjamin Petersone41251e2008-04-25 01:59:09 +0000139 .. attribute:: common_funny
Georg Brandl116aa622007-08-15 14:28:22 +0000140
Benjamin Petersone41251e2008-04-25 01:59:09 +0000141 Names in both *a* and *b*, such that the type differs between the
142 directories, or names for which :func:`os.stat` reports an error.
Georg Brandl116aa622007-08-15 14:28:22 +0000143
144
Benjamin Petersone41251e2008-04-25 01:59:09 +0000145 .. attribute:: same_files
Georg Brandl116aa622007-08-15 14:28:22 +0000146
Senthil Kumaran28a9f212012-07-22 19:12:58 -0700147 Files which are identical in both *a* and *b*, using the class's
148 file comparison operator.
Georg Brandl116aa622007-08-15 14:28:22 +0000149
150
Benjamin Petersone41251e2008-04-25 01:59:09 +0000151 .. attribute:: diff_files
Georg Brandl116aa622007-08-15 14:28:22 +0000152
Senthil Kumaran28a9f212012-07-22 19:12:58 -0700153 Files which are in both *a* and *b*, whose contents differ according
154 to the class's file comparison operator.
Georg Brandl116aa622007-08-15 14:28:22 +0000155
156
Benjamin Petersone41251e2008-04-25 01:59:09 +0000157 .. attribute:: funny_files
Georg Brandl116aa622007-08-15 14:28:22 +0000158
Benjamin Petersone41251e2008-04-25 01:59:09 +0000159 Files which are in both *a* and *b*, but could not be compared.
Georg Brandl116aa622007-08-15 14:28:22 +0000160
161
Benjamin Petersone41251e2008-04-25 01:59:09 +0000162 .. attribute:: subdirs
Georg Brandl116aa622007-08-15 14:28:22 +0000163
Georg Brandl71515ca2009-05-17 12:29:12 +0000164 A dictionary mapping names in :attr:`common_dirs` to :class:`dircmp`
165 objects.
Georg Brandl116aa622007-08-15 14:28:22 +0000166
R David Murray2b209cd2012-08-14 21:40:13 -0400167
168Here is a simplified example of using the ``subdirs`` attribute to search
169recursively through two directories to show common different files::
170
171 >>> from filecmp import dircmp
172 >>> def print_diff_files(dcmp):
173 ... for name in dcmp.diff_files:
174 ... print("diff_file %s found in %s and %s" % (name, dcmp.left,
175 ... dcmp.right))
176 ... for sub_dcmp in dcmp.subdirs.values():
177 ... print_diff_files(sub_dcmp)
178 ...
Ezio Melotti40507922013-01-11 09:09:07 +0200179 >>> dcmp = dircmp('dir1', 'dir2') # doctest: +SKIP
180 >>> print_diff_files(dcmp) # doctest: +SKIP
R David Murray2b209cd2012-08-14 21:40:13 -0400181