Python脚本016:查找两个不同文件夹中是否存在相同文件

Python脚本016:查找两个不同文件夹中是否存在相同文件,第1张

Python脚本016:查找两个不同文件夹中是否存在相同文件
#coding:utf-8
import os
import hashlib  #hash函数
import shutil

def makesDir(filepath): #判断如果文件不存在,则创建
    if not os.path.exists(filepath):
        os.makedirs(filepath)

if __name__ == '__main__':
    A=r'/home/jy/xl/workstation/Datasets/Car/Nighttime_Vehicle_ReID/Query'#代表是目录A
    B=r'/home/jy/xl/workstation/Datasets/Car/Nighttime_Vehicle_ReID/Gallery' #代表是目录B
    C=r'/home/jy/xl/workstation/Datasets/Car/Nighttime_Vehicle_ReID/Same' #代表是目录A和目录B的差集放在目录C
    makesDir(C)
    md5dict={}
    for filename in os.listdir(A):#返回的是一个一个的文件名
        hashvalue=hashlib.md5(filename.encode( 'utf-8' )).hexdigest()
        md5dict[hashvalue]=os.path.join(A, filename)
    for filename in os.listdir(B):
        hashvalue=hashlib. md5(filename.encode( 'utf-8' )).hexdigest()
        if hashvalue in md5dict:
            shutil.copy(os.path. join(B, filename),os.path.join(C,filename))


我的思考

用hash查找,速度真的好快,

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5593796.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存