我的电脑是windows xp的

来源:百度知道 编辑:UC知道 时间:2024/05/03 17:38:26
我想把临时文件给删掉,请问怎么找到这些临时文件的目录呢?

我给你个代码:
@echo off
echo 正在清除系统垃圾文件,请稍等......崔明倾力制作,只为让电脑“飞”起来 qq:396864713 小博客:cuiming.vvblog.com
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 清除系统垃圾完成!崔明制作 qq:396864713 谢谢 本人小博客:cuiming.vvblog.com
echo. & pause

复制以上文件