Created
April 15, 2023 13:41
自动清理当前目录下的 `__pycache__` 目录和文件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import shutil | |
current_path = os.path.abspath('.') | |
exclude_path = [ | |
os.path.join(current_path, '.idea'), | |
os.path.join(current_path, '.git'), | |
os.path.join(current_path, 'venv'), | |
] | |
def is_exclude(path: str): | |
for item in exclude_path: | |
if path.startswith(item): | |
return True | |
return False | |
def run(): | |
for root, dirs, files in os.walk(current_path): | |
root: str | |
if is_exclude(root): | |
continue | |
for item in dirs: | |
dir_path = os.path.join(root, item) | |
if item == '__pycache__': | |
print(f'delete: {dir_path}') | |
shutil.rmtree(dir_path) | |
if __name__ == '__main__': | |
run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment