[bat]批量删除空目录

Posted by Rezzo on Tuesday, February 13, 2024
@echo off
for /f "tokens=*" %%i in ('dir/s/b/ad^|sort /r') do rd "%%i"

批量删除空目录