...批处理,删除某文件夹下的所有名字为XXX的文件夹(包含子文件夹)_百 ...
发布网友
发布时间:2024-10-14 20:36
我来回答
共5个回答
热心网友
时间:2024-11-15 13:14
del c:\ky15\abc1\XXX.* /f /s /q
del c:\ky15\abc2\XXX.* /f /s /q
del c:\ky15\abc3\aaa1\XXX.* /f /s /q
del c:\ky15\abc3\aaa2\XXX.* /f /s /q
del c:\ky15\abc4\aaa1\ccc\XXX.* /f /s /q
热心网友
时间:2024-11-15 13:12
需要一个外部命令deltree,你可以到网上去下载。
例如你的deltree.exe 在c:\
@echo off
path=c:\
deltree c:\ky15\*.* -y
就行了。好久没用了,你可以试下,可能有错。如果不行请大虾们给与指点。
热心网友
时间:2024-11-15 13:15
@echo off
for /r c:\ky15 %%i in (.) do (
pushd %%i
if exist .\XXX\ rd /s /q XXX
)
热心网友
时间:2024-11-15 13:16
del /f /s /q c:\ky15\XXX
一句命令就行了。注意你的XXX文件名是要写上后缀的哦。。
热心网友
时间:2024-11-15 13:11
@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