📌  相关文章
📜  windows shell 根据名称删除文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:14.883000             🧑  作者: Mango

代码示例1
Get-Childitem -path c:\path -Filter *.jpg -Recurse | where-object {$_.Name -ilike "*_bad*"} | Remove-Item -Force -WhatIf