Windows 2008 下 D 盘根目录有规则前缀目录 Phone-1 Phone-2 Phone-4-1 Phone3369.3 类似这些都带有 Phone 前缀的目录. cmd 下 rd 或者 rmdir 都不支持通配符 比如 rmdir /s D:\Phone 这种操作是不允许的.
请问怎么做批处理来实现批量删除?
1
jjianwen68 2018-12-06 13:24:49 +08:00
一个方法:安装过 git 吧,git 下有 rm 命令,这个总能支持通配符了
|
2
imn1 2018-12-06 13:36:23 +08:00
powershell:
help remove-item |
3
Kasine 2018-12-06 17:49:01 +08:00
也可以用批处理:
for /d %i in (phone*) do rd %i |
4
Kasine 2018-12-06 17:49:30 +08:00
抱歉,是循环
|