求一个批处理(手动运行就可以),循环1000次删除C盘下一个文件(是COOKIES)里的,高手帮忙写一个.

来源:百度知道 编辑:UC知道 时间:2024/06/28 19:45:03
1000 次就是不停的删除啊~~

::保存并运行
@echo off
for /l %%i in (1,1,1000) do @del c:\cookies\文件名

自己写不就好了

我不是高手,没有那个 给你个差不多的吧
一键清理系统垃圾.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\*.*"