python 判断一个文件夹里面的文件是否都来自于另一个文件夹

python 判断一个文件夹里面的文件是否都来自于另一个文件夹,第1张

import os,sys
import shutil

test_path = r'xxxx'
train_path = r'C:\Users\xxx\Documents\WeChat Files\xxx\FileStorage\File22-04\train_10'
#  获取文件夹中的文件名
IsTest = os.listdir(test_path)
IsTrain = os.listdir(train_path)
# test 文件夹的文件数量比 train的少
count = 0
for i in IsTest:
    for j in IsTrain:
        if i == j:
            count+=1
print(count)

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

原文地址: http://outofmemory.cn/langs/718213.html

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

发表评论

登录后才能评论

评论列表(0条)

保存