Delete bin & obj folders
Jonas Samuelsson
Posted on August 20, 2020
I sometimes find myself in a situation where I need to delete the bin
/obj
folders for one or many .net projects.
Boot up powershell and navigate to the root of what needs to be deleted.
Beware, do not run this command in a system folder or terrible things will happen!! 😱
Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
💖 💪 🙅 🚩
Jonas Samuelsson
Posted on August 20, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
azure Securing Your Azure Cloud Environment with Application Security Groups (ASGs)
November 28, 2024