powershell 使用PowerShell以递归方式删除Windows中所有子文件夹中的`node_modules`文件夹,以避免超出路径max_length

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用PowerShell以递归方式删除Windows中所有子文件夹中的`node_modules`文件夹,以避免超出路径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

以上是关于powershell 使用PowerShell以递归方式删除Windows中所有子文件夹中的`node_modules`文件夹,以避免超出路径max_length的主要内容,如果未能解决你的问题,请参考以下文章

windows powershell 怎么使用啊,是干啥用的

powershell 使用powershell #powershell从zip文件中删除文件

powershell Powershell用于将Powershell与SharePoint 2007一起使用

powershell 如何定时执行 ps1

[powershell]Use powershell to get file hash / 使用powershell获取文件哈希值

PowerShell 添加任务以使用参数运行 PowerShell 脚本