标签: batch-file text-files directory delete-file subdirectory
我想使用批处理脚本删除文件夹中的所有.txt文件及其中包含的所有子文件夹。
我有一小段代码要从一个文件夹中删除,例如
del /s c:\MyFolder\*.txt
但是,这只会删除'MyFolder'文件夹中的文本文件。
答案 0 :(得分:0)
尝试更改驱动器:
pushd C:\Myfolder if %errorlevel%==1 del /s *.txt popd
它在所有子目录中搜索所有.txt文件!
莫纳