文件修改后,出现.TMP后缀的文件有没有什么好的办法能够解决这个问题呢?
发布网友
发布时间:2022-05-26 11:36
我来回答
共1个回答
热心网友
时间:2023-10-15 07:03
这是系统自动出现的临时文件,多半你的硬盘老化了,才会经常出现临时交换文件。解决的办法是将下面程序粘贴到记事本里,另存为LJ.bat,每天开机后运行一遍即可。
@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