摘要: # -*- coding: UTF-8 -*- import os import sys def print_directory_contents(path): for item in os.listdir(path): item_path = os.path.join(path, item) if 阅读全文
posted @ 2024-02-28 19:45 乐swap火 阅读(17) 评论(0) 推荐(0) 编辑