Page 1 of 1

need to delete multipale dir

Posted: 13 Oct 2009 01:11
by vijays3
Hi all

i have urgent requirement please help me ..

i need batch script which can delete multiple Ej* directories with having files also in one go..

Please help me to get it done

Thanks and regards
Vijay sahu :(

Posted: 14 Oct 2009 11:30
by avery_larry
*UNTESTED* (and dangerous)

cd to your parent directory.

for /d %a in (ej*) do rd /s /q "%a"

That's from the command line. For a batch script, change %a to %%a