rm
Remove Item
Delete folder
Usage
PowerShell
Remove-Item C:\tmp -Recurse -Force
or short:
PowerShell
rm C:\tmp -r -fo
Example
PowerShell
rm node_modules package-lock.json -r -fo
source: stackoverflow.com
Remove Item
Remove-Item C:\tmp -Recurse -Force
or short:
rm C:\tmp -r -fo
rm node_modules package-lock.json -r -fo
source: stackoverflow.com