首页 > 学院 > 常见问题 > 正文

删除E盘目录下指定文件夹和指定文件之外的其他文件夹的批处

2019-12-24 03:20:32
字体:
来源:转载
供稿:网友

文件是只读属性,只有一个文件夹和一个文件不删,其它的都要删除。

假设指定的文件夹和文件分别是 e:hello e:world.mp3
for /f "tokens=*" %%i in ('dir /s /b e:') do (if not "%%i"=="e:hello"
if not "%%i"=="e:world.mp3" del /f /s /q "%%i"  & rd /s /q "%%i")
rem 会删除d盘中除e:hello e:world.mp3外的所有文件
rem 以上代码保存为.bat文件运行

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表