摘要: import os """判断两个文件夹里是否有相同文件名的文件""" def fileList(path): filelist = {} n = 1 for root,folders,files in os.walk(path): for file in files: print('\rHas s 阅读全文
posted @ 2020-02-26 09:29 wztshine 阅读(1780) 评论(0) 推荐(0) 编辑