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 command.
I have given an example with a .svn file extension folder:
for /r %R in (.svn) do if exist %R (rd /s /q "%R")
Please execute the following steps:
Give the following command
del /S *.svn