@echo off setlocal for /f "usebackq tokens=*" %%a in (`dir /b /a:d`) do ( rem enter the directory pushd %%a echo In Directory: %%a del "SRXXXXXXX_QA_ICE_Call&Ticket.xltx" rem leave the directory popd ) endlocal