自动清理聊天软件缓存的脚本

wen 实用脚本 3

本文目录导读:

自动清理聊天软件缓存的脚本

  1. Windows 系统(清理微信缓存)
  2. 通用清理脚本(支持微信、QQ、Tim等)
  3. Python 跨平台版本
  4. 定时任务设置
  5. 使用建议

我可以为你提供几种自动清理聊天软件缓存的脚本方案,以下是针对不同操作系统和聊天软件的实现方式:

Windows 系统(清理微信缓存)

PowerShell 脚本

# 微信缓存清理脚本
$wechatPath = "$env:USERPROFILE\Documents\WeChat Files"
if (Test-Path $wechatPath) {
    Write-Host "正在清理微信缓存..." -ForegroundColor Yellow
    Get-ChildItem -Path $wechatPath -Recurse -Directory | 
    Where-Object { $_.Name -eq "Cache" -or $_.Name -eq "Image" -or $_.Name -eq "Video" } |
    ForEach-Object {
        $size = (Get-ChildItem $_.FullName -Recurse | Measure-Object Length -Sum).Sum / 1MB
        Write-Host "清理: $($_.FullName) (大小: $([math]::Round($size, 2)) MB)" -ForegroundColor Cyan
        Remove-Item "$($_.FullName)\*" -Recurse -Force -ErrorAction SilentlyContinue
    }
    Write-Host "微信缓存清理完成!" -ForegroundColor Green
} else {
    Write-Host "未找到微信缓存目录" -ForegroundColor Red
}

微信缓存清理(更多目录)

@echo off
:: 微信缓存清理批处理
echo 正在清理微信缓存...
:: 清理微信文件缓存
if exist "%USERPROFILE%\Documents\WeChat Files" (
    for /d %%i in ("%USERPROFILE%\Documents\WeChat Files\*") do (
        if exist "%%i\Cache" rd /s /q "%%i\Cache" 2>nul
        if exist "%%i\Image" rd /s /q "%%i\Image" 2>nul
        if exist "%%i\Video" rd /s /q "%%i\Video" 2>nul
        if exist "%%i\File" rd /s /q "%%i\File" 2>nul
    )
    echo 微信缓存清理完成!
) else (
    echo 未找到微信缓存目录
)
pause

通用清理脚本(支持微信、QQ、Tim等)

Windows Batch 脚本

@echo off聊天软件缓存清理工具
color 0A
echo ================================
echo    聊天软件缓存清理工具
echo ================================
echo.
:: 清理微信缓存
echo [正在清理微信缓存...]
call :CleanWeChat
:: 清理QQ缓存
echo [正在清理QQ缓存...]
call :CleanQQ
:: 清理TIM缓存
echo [正在清理TIM缓存...]
call :CleanTIM
echo.
echo 所有缓存清理完成!
pause
exit
:CleanWeChat
set "wechatPath=%USERPROFILE%\Documents\WeChat Files"
if exist "%wechatPath%" (
    for /d %%i in ("%wechatPath%\*") do (
        for %%d in (Cache Image Video File) do (
            if exist "%%i\%%d" (
                echo 清理:%%i\%%d
                rd /s /q "%%i\%%d" 2>nul
                md "%%i\%%d" 2>nul
            )
        )
    )
    echo 微信缓存清理完成!
) else (
    echo 未找到微信缓存目录
)
goto :eof
:CleanQQ
set "qqPath=%USERPROFILE%\Documents\Tencent Files"
if exist "%qqPath%" (
    for /d %%i in ("%qqPath%\*") do (
        for %%d in (Image File Video Audio) do (
            if exist "%%i\%%d" (
                echo 清理:%%i\%%d
                rd /s /q "%%i\%%d" 2>nul
                md "%%i\%%d" 2>nul
            )
        )
    )
    echo QQ缓存清理完成!
) else (
    echo 未找到QQ缓存目录
)
goto :eof
:CleanTIM
set "timPath=%USERPROFILE%\Documents\TIM Files"
if exist "%timPath%" (
    for /d %%i in ("%timPath%\*") do (
        for %%d in (Image File Video) do (
            if exist "%%i\%%d" (
                echo 清理:%%i\%%d
                rd /s /q "%%i\%%d" 2>nul
                md "%%i\%%d" 2>nul
            )
        )
    )
    echo TIM缓存清理完成!
) else (
    echo 未找到TIM缓存目录
)
goto :eof

Python 跨平台版本

#!/usr/bin/env python3
import os
import shutil
from pathlib import Path
def get_size(path):
    """获取文件夹大小"""
    total = 0
    for entry in os.scandir(path):
        if entry.is_file():
            total += entry.stat().st_size
        elif entry.is_dir():
            total += get_size(entry.path)
    return total
def clean_cache(base_path, folders_to_clean):
    """清理缓存"""
    base = Path(base_path)
    if not base.exists():
        print(f"目录不存在: {base}")
        return 0
    total_cleaned = 0
    for user_dir in base.iterdir():
        if user_dir.is_dir():
            for cache_folder in folders_to_clean:
                cache_path = user_dir / cache_folder
                if cache_path.exists():
                    size = get_size(cache_path)
                    if size > 0:
                        print(f"清理: {cache_path} ({size/1024/1024:.2f} MB)")
                        shutil.rmtree(cache_path)
                        cache_path.mkdir()
                        total_cleaned += size
    return total_cleaned
def main():
    print("聊天软件缓存清理工具")
    print("=" * 50)
    # 清理微信
    wechat_path = Path.home() / "Documents" / "WeChat Files"
    wechat_folders = ["Cache", "Image", "Video", "File"]
    print("\n[清理微信缓存]")
    cleaned = clean_cache(wechat_path, wechat_folders)
    if cleaned > 0:
        print(f"微信清理完成,释放空间: {cleaned/1024/1024:.2f} MB")
    # 清理QQ
    qq_path = Path.home() / "Documents" / "Tencent Files"
    qq_folders = ["Image", "File", "Video", "Audio"]
    print("\n[清理QQ缓存]")
    cleaned = clean_cache(qq_path, qq_folders)
    if cleaned > 0:
        print(f"QQ清理完成,释放空间: {cleaned/1024/1024:.2f} MB")
if __name__ == "__main__":
    main()

定时任务设置

Windows 任务计划程序设置

:: 创建定时任务(每天中午12点执行)
schtasks /create /tn "清理聊天缓存" /tr "C:\path\to\clean.bat" /sc daily /st 12:00 /f

使用建议

  1. 备份重要文件:首次使用前备份聊天文件
  2. 关闭聊天软件:清理前关闭微信、QQ等软件
  3. 管理员权限:某些目录需要管理员权限
  4. 定期执行:建议每周执行一次
  5. 选择性清理:可以根据需要只清理特定类型的缓存

选择适合你需求的脚本,并适当调整清理路径和文件类型,如果你需要特定聊天软件的清理脚本,请告诉我具体软件名称。

抱歉,评论功能暂时关闭!