开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 0

source-code-analysis/python3.8.1

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.8.1
/
Doc
/
library
/
filecmp.rst
python3.8.1
/
Doc
/
library
/
filecmp.rst
filecmp.rst 5.49 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月16日 09:46 +08:00 . git init

:mod:`filecmp` --- File and Directory Comparisons

.. module:: filecmp
 :synopsis: Compare files efficiently.

.. sectionauthor:: Moshe Zadka <moshez@zadka.site.co.il>

Source code: :source:`Lib/filecmp.py`


The :mod:`filecmp` module defines functions to compare files and directories, with various optional time/correctness trade-offs. For comparing files, see also the :mod:`difflib` module.

The :mod:`filecmp` module defines the following functions:

.. function:: cmp(f1, f2, shallow=True)

 Compare the files named *f1* and *f2*, returning ``True`` if they seem equal,
 ``False`` otherwise.

 If *shallow* is true, files with identical :func:`os.stat` signatures are
 taken to be equal. Otherwise, the contents of the files are compared.

 Note that no external programs are called from this function, giving it
 portability and efficiency.

 This function uses a cache for past comparisons and the results,
 with cache entries invalidated if the :func:`os.stat` information for the
 file changes. The entire cache may be cleared using :func:`clear_cache`.


.. function:: cmpfiles(dir1, dir2, common, shallow=True)

 Compare the files in the two directories *dir1* and *dir2* whose names are
 given by *common*.

 Returns three lists of file names: *match*, *mismatch*,
 *errors*. *match* contains the list of files that match, *mismatch* contains
 the names of those that don't, and *errors* lists the names of files which
 could not be compared. Files are listed in *errors* if they don't exist in
 one of the directories, the user lacks permission to read them or if the
 comparison could not be done for some other reason.

 The *shallow* parameter has the same meaning and default value as for
 :func:`filecmp.cmp`.

 For example, ``cmpfiles('a', 'b', ['c', 'd/e'])`` will compare ``a/c`` with
 ``b/c`` and ``a/d/e`` with ``b/d/e``. ``'c'`` and ``'d/e'`` will each be in
 one of the three returned lists.


.. function:: clear_cache()

 Clear the filecmp cache. This may be useful if a file is compared so quickly
 after it is modified that it is within the mtime resolution of
 the underlying filesystem.

 .. versionadded:: 3.4


The :class:`dircmp` class

Construct a new directory comparison object, to compare the directories a and b. ignore is a list of names to ignore, and defaults to :attr:`filecmp.DEFAULT_IGNORES`. hide is a list of names to hide, and defaults to [os.curdir, os.pardir].

The :class:`dircmp` class compares files by doing shallow comparisons as described for :func:`filecmp.cmp`.

The :class:`dircmp` class provides the following methods:

.. method:: report()

 Print (to :data:`sys.stdout`) a comparison between *a* and *b*.

.. method:: report_partial_closure()

 Print a comparison between *a* and *b* and common immediate
 subdirectories.

.. method:: report_full_closure()

 Print a comparison between *a* and *b* and common subdirectories
 (recursively).

The :class:`dircmp` class offers a number of interesting attributes that may be used to get various bits of information about the directory trees being compared.

Note that via :meth:`__getattr__` hooks, all attributes are computed lazily, so there is no speed penalty if only those attributes which are lightweight to compute are used.

.. attribute:: left

 The directory *a*.


.. attribute:: right

 The directory *b*.


.. attribute:: left_list

 Files and subdirectories in *a*, filtered by *hide* and *ignore*.


.. attribute:: right_list

 Files and subdirectories in *b*, filtered by *hide* and *ignore*.


.. attribute:: common

 Files and subdirectories in both *a* and *b*.


.. attribute:: left_only

 Files and subdirectories only in *a*.


.. attribute:: right_only

 Files and subdirectories only in *b*.


.. attribute:: common_dirs

 Subdirectories in both *a* and *b*.


.. attribute:: common_files

 Files in both *a* and *b*.


.. attribute:: common_funny

 Names in both *a* and *b*, such that the type differs between the
 directories, or names for which :func:`os.stat` reports an error.


.. attribute:: same_files

 Files which are identical in both *a* and *b*, using the class's
 file comparison operator.


.. attribute:: diff_files

 Files which are in both *a* and *b*, whose contents differ according
 to the class's file comparison operator.


.. attribute:: funny_files

 Files which are in both *a* and *b*, but could not be compared.


.. attribute:: subdirs

 A dictionary mapping names in :attr:`common_dirs` to :class:`dircmp`
 objects.
.. attribute:: DEFAULT_IGNORES

 .. versionadded:: 3.4

 List of directories ignored by :class:`dircmp` by default.


Here is a simplified example of using the subdirs attribute to search recursively through two directories to show common different files:

>>> from filecmp import dircmp
>>> def print_diff_files(dcmp):
... for name in dcmp.diff_files:
... print("diff_file %s found in %s and %s" % (name, dcmp.left,
... dcmp.right))
... for sub_dcmp in dcmp.subdirs.values():
... print_diff_files(sub_dcmp)
...
>>> dcmp = dircmp('dir1', 'dir2') # doctest: +SKIP
>>> print_diff_files(dcmp) # doctest: +SKIP
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.8.1.git
git@gitee.com:python_sourcecode/python3.8.1.git
python_sourcecode
python3.8.1
python3.8.1
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /