Recursively Remove .svn Windows Bat File
Corrupted entries file? Yeah... LAME.
I ran the code below from a .bat file within the directory I wanted to recursively remove .svn directories from.
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G"

