分享免费的编程资源和教程

网站首页 > 技术教程 正文

电脑C盘容量越来越小?动手制作C盘垃圾清理代码

goqiw 2024-10-10 08:14:38 技术教程 13 ℃ 0 评论

怎么清理C盘的垃圾文件?每天上网会给电脑带来很多临时文件,

这些垃圾文件不清理掉时间久了就会影响到电脑的运行速度。

那怎么清理C盘垃圾文件呢?

自己动手制作一个小程序-清理系统垃圾 简单实用。

代码如下:

@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

将代码复制到新建记事本--保存。

将文件后缀名.txt改为.bat回车确认。

完成,双击即可运行程序,对C盘进行垃圾清理。

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表