OverWrite_235
2021-08-29 19:09:12浏览 1048
导入依赖
'''导入依赖'''
from pathlib import Path
import filecmp
函数说明
'''
filecmp.cmp(path1, path2, shallow=True)
path1/path2:待比较的两个文件路径。
shallow :默认为True,即只比较os.stat()获取的元数据(创建时间,大小等信息)是否相同,
设置为False的话,在对比文件的时候还要比较文件内容。
'''
提取待去重文件路径
path_files_list = []
for path in Path(r'/usr/load/data').iterdir():
if path.is_file():
path_files_list.append(path)
for file_index in range(len(path_files_list) - 1):
for later in range(file_index + 1, len(path_files_list)):
if filecmp.cmp(path_files_list[file_index],
path_files_list[later], shallow=False):
path_files_list[file_index].unlink()
break