Python: 快速清理缓存文件夹 夜风 | 2024-10-18 15:23 | 55 | 0 | Python,小技巧 40 字 | 1 分钟内 获取并删除当前目录下,包括内部子文件夹中的__pycache__文件夹: import os import shutil # 获取当前工作目录 root_dir = os.getcwd() # 遍历目录 for dirpath, dirnames, filenames in os.walk(root_dir): if "__pycache__" i… script