Safely clean disk space on any operating system (Windows, Linux, macOS).
Never deletes important files — only junk, cache, temp, and log files.
| Category | Examples |
|---|---|
| --------------------- | ------------------------------------------------- |
| Temp Files | %TEMP%, /tmp, system temp folders |
| Browser Cache | Chrome, Firefox, Edge, Safari cache |
| Recycle Bin / Trash | Windows Recycle Bin, macOS Trash, Linux Trash |
| Log Files | Old .log files in system/app folders |
> ⚠️ NEVER delete: Documents, Downloads, Desktop files, user data, system files,
> installed apps, or anything outside designated junk folders.
Always ask the user FIRST (if not already specified):
Detect the OS using Python:
import platform
os_type = platform.system() # "Windows", "Linux", "Darwin" (Mac)
Based on OS, refer to the matching reference file:
windows-cleaner.mdlinux-cleaner.mdmac-cleaner.mdAfter cleaning, always show:
User says: "My disk is full"
→ Ask mode preference → Run full clean → Show space freed
User says: "Clear browser cache only"
→ Only clean browser cache → Show result
User says: "Auto clean everything"
→ Run all categories silently → Show summary
共 1 个版本