Following powershell script can be used for deleting all Debug folders inside of your project space.
Write-Output "Removing Debug folders" ;
Get-ChildItem . -include Debug -Recurse | ForEach-Object ($_) {
Write-Host "Removed: " -nonewline;
Write-Output $_.FullName ;
Remove-Item $_.FullName -Force -Recurse
}