I need your help for writing a little batch script in order to delete specific named folders inside a path.
Let's image we have multiple folders called "pippo" inside the path tree "C:\Users\myUser\Desktop\StartFolder"
How can I write a script that browses all the folder tree of that path and delete all fsubolders called "pippo" ?
Thanks!
I found this command in other site for /d /r "%d" %d in (_svn) do @if exist "%d" rmdir "%d"
So I tried to adapt it to my target, but it doesn't work. for /d /r "C:\Users\myUser\Desktop\StartFolder" "pippo" in (_svn) do @if exist "pippo" rmdir "pippo"