摘要: 打印指定路径下所有文件的具体路径 import os input_path = './' path_file = open('path_file', 'w') for root, dirs, files in os.walk(input_path): for file in files : path 阅读全文
posted @ 2024-03-29 17:58 ben犇 阅读(23) 评论(0) 推荐(0) 编辑