QQ文件夹里什么东西可以删除?

来源:百度知道 编辑:UC知道 时间:2024/05/28 11:45:26
我的具体问题是 ,我的QQ文件夹里好多东西,我想知道里面哪些是没有用的东西,我想清理一下里面没用的东西,想知道哪些是可以删掉的,那些是不能删的,还有那些具体都是干什么用的。 可否写出一个删除的路径,最好详细点写出一步步怎么操做谢谢?

不建议你这种做法。
如果电脑空间问题,可以使用垃圾文件清理程式!
可以自己编一个;

使用记事本软件编写

@echo off
echo
@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 清除系统垃圾已经完成!~~
echo. & pause