Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yadejo/e0fd0ecdd3fb115daaf09851e241c3e1 to your computer and use it in GitHub Desktop.
Save yadejo/e0fd0ecdd3fb115daaf09851e241c3e1 to your computer and use it in GitHub Desktop.
Remove `node_modules` folders in Windows in all subfolders recursively with PowerShell to avoid exceeding path max_length
<#
Note: Eliminate `-WhatIf` parameter to get action be actually done
Note: PS with version prior to 4.0 can't delete non-empty folders
#>
Get-ChildItem -Path "." -Include "node_modules" -Recurse -File:$false | Remove-Item -Recurse -Force -WhatIf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment