随笔分类 - 工具
摘要:1. 某目录下所有x类型的文件,包括子目录下的 (1) 递归的 def getAllFiles(rootPath, allFiles, fileTypes): files = os.listdir(rootPath) for file in files: pathTmp = os.path.join
阅读全文
posted @ 2020-09-12 17:35
T,X