powershell 递归批量删除指定类型的文件 powershell 递归批量删除指定类型的文件 2020 年 11 月 22 日 北漂小兄弟 Comments 2 comments ls $folder -r | % { if($_.name -match "mp3$" -and $_.mode -notmatch "d"){ del $_.FullName}}
2 thoughts on “powershell 递归批量删除指定类型的文件”
Thank you!!1
no thank!