摘要: import os import fnmatch for dirPath, dirs, files in os.walk('./'): for file_name in files: if fnmatch.fnmatch(file_name, '*.m'): file_path = dirPath 阅读全文
posted @ 2020-11-17 17:11 ximenchuixie 阅读(148) 评论(0) 推荐(0) 编辑