Guest User

Untitled

a guest
Dec 18th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. To see which folders will be deleted:
  2.  
  3. FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" echo %d"
  4.  
  5. And then to actually delete them, just run this:
  6.  
  7. FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rd /q /s "%d"
Add Comment
Please, Sign In to add comment