How do I delete files or folders recursively on Windows from the command line?
I have found this solution where path we drive on the command line and run this comman
The other answers didn't work for me, but this did:
del /s /q *.svn rmdir /s /q *.svn
/q disables Yes/No prompting
/s means delete the file(s) from all subdirectories.