Delete all .svn folder on windows


/ Published in: Windows PowerShell
Save to your folder(s)



Copy this code and paste it in your HTML
  1. for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *.svn') do (
  2. rd /s /q "%%i"
  3. )
  4.  
  5. pause

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.