闪闪发光的意思:这是用什么语言编写的程序阿?

来源:百度文库 编辑:神马品牌网 时间:2024/05/10 06:15:19
@echo off
echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
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%\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

批处理命令文件,里面全是DOS命令,将内容保存为bat文件就可以执行了。
解释:
@echo off //不在屏幕上显示正在执行的命令
echo A //在屏幕上显示A的内容,比如你上面A=正在清除……
del //是删除文件命令
rd //是删除文件夹的命令

dos的批处理程序