摘要: import os def show_all(path, num=0): """ 递归打印传入目录下的目录和文件 :param path: str :param num: int :return: """ path_list = os.listdir(path) if path_list: for i in p... 阅读全文
posted @ 2019-07-17 10:12 yijue_lu 阅读(178) 评论(0) 推荐(0) 编辑