Documents and Settings文件夹里的Temp文件夹有用么?

来源:百度知道 编辑:UC知道 时间:2024/09/23 13:28:42
C:\Documents and Settings\212567\Local Settings\Temp文件夹里的东西有用么?我电脑里的那个文件夹里的文件已经2个多G了,可以删么?

系统中所有temp的文件都可以删除
建议用下面的方法:把以下内容复制到文本文档中,另存为.bat文件,双击执行就OK了

@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

这样会防止你误删掉有用的东西。。