Forked from SynCap/remove_node_modules_recursively.ps1
Created
January 17, 2024 16:26
-
-
Save hkkcngz/052accf559356ea09aafc37c94eaf998 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
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 -Directory | Remove-Item -Recurse -Force -WhatIf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment