本帖最后由 再世情緣 于 2016-4-23 21:30 编辑
回复 10# CGQNET
你那第二行有个变量名错了
FOR /f "delims=" %%b IN ('dir *.doc /s /a /b' ) DO (if %%~za equ 0 DEL /f /s /q "%%b")
应该是- FOR /f "delims=" %%b IN ('dir *.doc /s /a /b' ) DO (if %%~zb equ 0 DEL /f /s /q "%%b")
复制代码 或者你可以写在一起- FOR /f "delims=" %%a IN ('dir *.doc *.txt /s /a /b 2^>nul' ) DO (if %%~za equ 0 DEL /f /s /q "%%~fa")
复制代码
|