摘要: import os def get_all_deep_files_in_folder(folder_path): all_files = [] file_paths = os.listdir(folder_path) for item in file_paths: fp = os.path.join 阅读全文
posted @ 2023-11-16 09:53 奔跑着看风景 阅读(27) 评论(0) 推荐(0) 编辑