Delete SVN Directories in Project Powershell Script
Here is the PowerShell script to delete all the SVN directories in your project.
Use this code with your own risk, try it somewhere else first.
ls -Force -Recurse -Filter .svn | rm -Force -Recurse
Use this code with your own risk, try it somewhere else first.
Comments