一个奇怪的现象,请教各位!

来源:百度知道 编辑:UC知道 时间:2024/05/08 18:10:25
我刚进到C:\Documents and Settings\new\Local Settings\Temporary Internet Files里面,用右键刷新的时候,发现文件不断的增多,怎么会出现这种情况的?我当时正在清理临时文件的啊!

IE的缓存文件,IE正在使用中。
开/关IE进行尝试
另附自动清理BAT文件代码
使用方法:
1、新建一记事本,然后复制以下内容:
------------------------------以下代码区
@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\*.*"
------------------------------以上代码