标题: [文件操作] 批处理怎样把C盘下的HyperV删除? [打印本页]
作者: lovekix 时间: 2020-7-11 20:28 标题: 批处理怎样把C盘下的HyperV删除?
想把 C盘下面的 包含HyperV 文件名 的文件 (文件夹) 全部都删除
请问 如何写?
作者: lovekix 时间: 2020-7-11 20:28
本帖最后由 lovekix 于 2020-7-11 22:11 编辑
还请大神 多多帮忙
作者: went 时间: 2020-7-11 20:40
in (*Hyperv*)
作者: lovekix 时间: 2020-7-11 22:11
回复 3# went
谢谢
但是 好像上面的 命令不行
作者: 不知道是谁 时间: 2020-7-11 22:42
回复 1# lovekix
请先使用第一种检查无误后再删除- @echo off
- for /f "delims=" %%i in ('dir /ad /b /s c:\*HyperV*') do echo "%%i"
- for /f "delims=" %%i in ('dir /a-d /b /s c:\*HyperV*') do echo "%%i"
- pause
复制代码
- @echo off
- for /f "delims=" %%i in ('dir /ad /b /s c:\*HyperV*') do rd /s /q "%%i"
- for /f "delims=" %%i in ('dir /a-d /b /s c:\*HyperV*') do del /f /q /a "%%i"
- pause
复制代码
作者: lovekix 时间: 2020-7-13 18:13
回复 lovekix
请先使用第一种检查无误后再删除
不知道是谁 发表于 2020-7-11 22:42
- @echo off
- for /f "delims=" %%i in ('dir /ad /b /s c:\*HyperV*') do echo "%%i"
- for /f "delims=" %%i in ('dir /a-d /b /s c:\*HyperV*') do echo "%%i"
- pause
-
-
-
- @echo off
- for /f "delims=" %%i in ('dir /ad /b /s c:\*HyperV*') do rd /s /q "%%i"
- for /f "delims=" %%i in ('dir /a-d /b /s c:\*HyperV*') do del /f /q /a "%%i"
- pause
复制代码
谢谢
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |