摘要: import os def readDir(dirPath): if dirPath[-1] == '/': print('文件夹路径末尾不能加/') return allFiles = [] # 储存 if os.path.isdir(dirPath): fileList = os.listdir 阅读全文
posted @ 2022-08-12 11:01 nate_pan 阅读(556) 评论(0) 推荐(0) 编辑