原始链接:PowerShell 技能连载 - 用正则表达式搜索文件
发表日期:2014-08-18
适用于 PowerShell 所有版本
`Get-ChildItem` 不支持高级的文件过滤。当您使用简单的通配符时,无法利用上正则表达式。
要用上正则表达式,需要增加一个过滤用的 cmdlet 和 `-match` 操作符。
这个例子将在 Windows 目录中查找所有文件名包含至少 2 位数字,且文件名不超过 8 个字符的文件:- Get-ChildItem -Path $env:windir -Recurse -ErrorAction SilentlyContinue |
- Where-Object { $[i].BaseName -match '\d{2}' -and $[/i].Name.Length -le 8 }
复制代码 本文国际来源:Searching Files with Regular Expressions |