Command in PowerShell to clean development folders from bin/obj files

PowerShell

This is very useful when archiving projects


Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }

Post a Comment

Previous Post Next Post