首页 > 使用BAT命令批量删除文件及一键清理系统垃圾文件脚本

使用BAT命令批量删除文件及一键清理系统垃圾文件脚本

更新:

windows系统中删除大量文件简直太慢了,而且容易卡死,通过bat反而效率会高一些。


删除文件

del /f /s /q D:\HRG\NEW_Vn\CSV\*.meta

删除空文件夹

只能先删完文件夹中的文件,再删除空文件夹

rd /s /q D:\HRG\NEW_Vn\CSV\



一键清理垃圾文件脚本

@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q  %systemdrive%\*.tmp
del /f /s /q  %systemdrive%\*._mp
del /f /s /q  %systemdrive%\*.log
del /f /s /q  %systemdrive%\*.gid
del /f /s /q  %systemdrive%\*.chk
del /f /s /q  %systemdrive%\*.old
del /f /s /q  %systemdrive%\recycled\*.*
del /f /s /q  %windir%\*.bak
del /f /s /q  %windir%\prefetch\*.*
rd /s /q %windir%\temp & md  %windir%\temp
del /f /q  %userprofile%\cookies\*.*
del /f /q  %userprofile%\recent\*.*
del /f /s /q  "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q  "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q  "%userprofile%\recent\*.*"
echo 清除系统LJ完成!
echo. & pause


文章目录
顶部