wipe cache partition的意思是清除系统缓存。
wipe cache partition一般出现在recovery界面的,一般是在刷机前进行,如果手机系统出现问题,也可以通激悉缓过该操作尝试解决。该操作属于双wipe中的一个。双wipe是俗称双清,即清除系统缓存和清除用陆乎户数据并恢复出厂设置(wipe data/factory reset)。
双wipe是刷机前必须执行的操作,如果不执行很可能导致刷机失败或者系统不稳定。执行完双wipe后就可以从sd卡中选择已经下载好的ROM包进行刷机了。
清除系统缓存的方法如明模下:
2、文件名的后缀必须为“bat”。
3、该文本文档右击选择“编辑”。
4、然后复制以下代码到记事本中:
@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