python列表比较的原理_Python3 filecmp模块测试比较文件原理解析

本文详细介绍了Python3的filecmp模块,包括如何比较文件和目录。通过示例展示了cmp()函数、cmpfiles()以及dircmp类的用法,解释了如何进行浅比较和深比较,并提供了递归比较目录的方法。此外,还讨论了如何在程序中使用差异和忽略特定文件。
摘要由CSDN通过智能技术生成

1.filecmp比较文件

filecmp模块提供了一些函数和一个类来比较文件系统上的文件和目录。

1.1 示例数据

使用下面代码创建一组测试文件。

import os

def mkfile(filename, body=None):

with open(filename, 'w') as f:

f.write(body or filename)

return

def make_example_dir(top):

if not os.path.exists(top):

os.mkdir(top)

curdir = os.getcwd()

os.chdir(top)

os.mkdir('dir1')

os.mkdir('dir2')

mkfile('dir1/file_only_in_dir1')

mkfile('dir2/file_only_in_dir2')

os.mkdir('dir1/dir_only_in_dir1')

os.mkdir('dir2/dir_only_in_dir2')

os.mkdir('dir1/common_dir')

os.mkdir('dir2/common_dir')

mkfile('dir1/common_file', 'this file is the same')

os.link('dir1/common_file', 'dir2/common_file')

mkfile('dir1/contents_differ')

mkfile('dir2/contents_differ')

# Update the access and modification times so most of the stat

# results will match.

st = os.stat('dir1/contents_differ')

os.utime('dir2/contents_differ', (st.st_atime, st.st_mtime))

mkfile('dir1/file_in_dir1', 'This is a file in dir1')

os.mkdir('dir2/file_in_dir1')

os.chdir(curdir)

return

if __name__ == '__main__':

os.chdir(os.path.dirname(__file__) or os.getcwd())

make_example_dir('example')

make_example_dir('example/dir1/common_dir')

make_example_dir('example/dir2/common_dir')

运行这个脚本会在axample目录下生成一个文件树。

64569b59fd4d1c85c3f7b2ad229d4c41.png

common_dir目录下也有同样的目录结构,以提供有意思的递归比较选择。

1.2 比较文件

cmp()用于比较文件系统上的两个文件。

import filecmp

print('common_file :', end=' ')

print(filecmp.cmp('example/dir1/common_file',

'example/dir2/common_file',

shallow=True),

end=' ')

print(filecmp.cmp('example/dir1/common_file',

'example/dir2/common_file',

shallow=False))

print('contents_differ:', end=' ')

print(filecmp.cmp('example/dir1/contents_differ',

'example/dir2/contents_differ',

shallow=True),

end=' ')

print(filecmp.cmp('example/dir1/contents_differ',

'example/dir2/contents_differ',

shallow=False))

print('identical :', end=' ')

print(filecmp.cmp('example/dir1/file_only_in_dir1',

'example/dir1/file_only_in_dir1',

shallow=True),

end=' ')

print(filecmp.cmp('example/dir1/file_only_in_dir1',

'example/dir1/file_only_in_dir1',

shallow=False))

shallo参数告诉cmp()除了文件的元数据外,是否还要查看文件的内容。默认情况下,会使用由os.stat()得到的信息来完成一个浅比较。如果结果是一样的,则认为文件相同。因此,对于同时创建的相同大小的文件,即使他们的内容不同,也会报告为是相同的文件。当shallow为False时,则要比较文件的内容。

471695f4df039af9c0ab4f12729bba00.png

如果非递归的比较两个目录中的一组文件,则可以使用cmpfiles()。参数是目录名和两个位置上要检查的我就爱你列表。传入的公共文件列表应当只包含文件名(目录会导致匹配不成功),而且这些文件在两个位置上都应当出现。下一个例子显示了构造公共列表的一种简单方法。与cmp()一样,这个比较也有一个shallow标志。

import filecmp

import os

# Determine the items that exist in both directories

d1_contents = set(os.listdir('example/dir1'))

d2_contents = set(os.listdir('example/dir2'))

common = list(d1_contents & d2_contents)

common_files = [

f

for f in common

if os.path.isfile(os.path.join('example/dir1', f))

]

print('Common files:', common_files)

# Compare the directories

match, mismatch, errors = filecmp.cmpfiles(

'example/dir1',

'example/dir2',

common_files,

)

print('Match :', match)

print('Mismatch :', mismatch)

print('Errors :', errors)

cmpfiles()返回3个文件名列表,分别包含匹配的文件、不匹配的文件和不能比较的文件(由于权限问题或出于其他原因)。

05dfb033b5ca323f4f0e7a020c7257b6.png

1.3 比较目录

前面介绍的函数适合完成相对简单的比较。对于大目录树的递归比较或者更完整的分析,dircmp类很更有用。在最简单的用例中,report()会打印比较两个目录的报告。

import filecmp

dc = filecmp.dircmp('example/dir1', 'example/dir2')

dc.report()

输出是一个纯文本报告,显示的结果只包括给定目录的内容,而不会递归比较其子目录。在这里,认为文件not_the_same是相同的,因为这里没有比较内容。无法让dircmp像cmp()那样比较文件的内容。

98f69c28bb18970de1b2da3f56dc3671.png

为了更多的细节,也为了完成一个递归比较,可以使用report_full_closure()。

import filecmp

dc = filecmp.dircmp('example/dir1', 'example/dir2')

dc.report_full_closure()

输出将包括所有同级子目录的比较。

fa666a528dae3eea9f8ea7b52640aee1.png

1.4 在程序中使用差异

除了生成打印报告,dircmp还能计算文件列表,可以在程序中直接使用。以下各个属性只在请求时才计算,所以对于未用的数据,创建dircmp实例不会带来开销。

import filecmp

import pprint

dc = filecmp.dircmp('example/dir1', 'example/dir2')

print('Left:')

pprint.pprint(dc.left_list)

print('\nRight:')

pprint.pprint(dc.right_list)

所比较目录中包含的文件和子目录分别列在left_list和right_list中。

359c43aac4771662ecb69f11fbce7ab8.png

可以向构造函数传入一个要忽略的名字列表(该列表中指定的名字将被忽略)来对输入进行过滤。默认的,RCS、CVS和tags等名字会被忽略。

import filecmp

import pprint

dc = filecmp.dircmp('example/dir1', 'example/dir2',

ignore=['common_file'])

print('Left:')

pprint.pprint(dc.left_list)

print('\nRight:')

pprint.pprint(dc.right_list)

在这里,将common_file从要比较的文件列表中去除。

fecf27d858ba62244e31d18fd6a0184a.png

两个输入目录中共有的文件名会保存在common内,各目录独有的文件会列在left_only和right_only中。

import filecmp

import pprint

dc = filecmp.dircmp('example/dir1', 'example/dir2')

print('Common:')

pprint.pprint(dc.common)

print('\nLeft:')

pprint.pprint(dc.left_only)

print('\nRight:')

pprint.pprint(dc.right_only)

"左"目录是dircmp()的第一个参数,"右"目录是第二个参数。

3998ef4b03bad841b4b5a2aa2ce0a60d.png

公共成员可以被进一步分解为文件、目录和“有趣”元素(两个目录中类型不同的内容,或者os.stat()指出的有错误的地方)。

import filecmp

import pprint

dc = filecmp.dircmp('example/dir1', 'example/dir2')

print('Common:')

pprint.pprint(dc.common)

print('\nDirectories:')

pprint.pprint(dc.common_dirs)

print('\nFiles:')

pprint.pprint(dc.common_files)

print('\nFunny:')

pprint.pprint(dc.common_funny)

在示例数据中,file_in_dir1元素在一个目录中是一个文件,而在另一个目录中是一个子目录,所以它会出现在“有趣”列表中。

4e19418f9599fafb2c159f7005fc7715.png

文件之间的差别也可以做类似的划分。

import filecmp

dc = filecmp.dircmp('example/dir1', 'example/dir2')

print('Same :', dc.same_files)

print('Different :', dc.diff_files)

print('Funny :', dc.funny_files)

文件not_the_same通过os.stat()比较,并且不检查内容,所以它包含在same_files列表中。

a6efd08b0b0e71e1d6754fba6b550ad4.png

最后一点,子目录也会被保存,以便容易地完成递归比较。

import filecmp

dc = filecmp.dircmp('example/dir1', 'example/dir2')

print('Subdirectories:')

print(dc.subdirs)

属性subdirs是一个字典,它将目录名映射到新的dircmp对象。

2a59c005f8dc408bd745fdd58467576c.png

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值