C盘哪些文件可以删掉?

如题所述

温馨提示:答案为网友推荐,仅供参考
第1个回答  推荐于2016-11-02
可以删除的C盘文件

C:\Documents and Settings\用户名\Cookies\下的所有文件(保留index文件)

C:\Documents and Settings\用户名\Local Settings\Temp\下的所有文件(用户临时文件)

C:\Documents and Settings\用户名\LocalSettings\TemporaryInternet Files\下的所有文件(页面文件)

C:\Documents and Settings\用户名\Local Settings\History\下的所有文件(历史纪录)

C:\Documents and Settings\用户名\Recent\下的所有文件(最近浏览文件的快捷方式)

C:\WINDOWS\Temp\下的所有文件(临时文件)

C:\WINDOWS\ServicePackFiles(升级sp1或sp2后的备份文件)

C:\WINDOWS\Driver Cache\i386下的压缩文件(驱动程序的备份文件)

C:\WINDOWS\SoftwareDistribution\download下的所有文件

如果对系统进行过windoes updade升级,则删除以下文件:

C:\windows\下以 $u... 开头的隐藏文件本回答被提问者采纳
第2个回答  2011-03-12
WINDOWS和program files内的最好不要动,其余的都可以(隐藏的系统文件也最好不要动)
另,在搞不清每个文件是什么用处的情况下,最好不要删除C盘文件
第3个回答  2011-03-12
找个清除系统垃圾文件就可自动删除系统无用的文件
或将下面的代码复制到文本文件,并将后缀名改为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
相似回答