Board logo

标题: [原创教程] PowerShell 技能连载 - 用正则表达式搜索文件 [打印本页]

作者: victorwoo    时间: 2014-8-25 09:53     标题: PowerShell 技能连载 - 用正则表达式搜索文件

原始链接:PowerShell 技能连载 - 用正则表达式搜索文件
发表日期:2014-08-18


适用于 PowerShell 所有版本

`Get-ChildItem` 不支持高级的文件过滤。当您使用简单的通配符时,无法利用上正则表达式。

要用上正则表达式,需要增加一个过滤用的 cmdlet 和 `-match` 操作符。

这个例子将在 Windows 目录中查找所有文件名包含至少 2 位数字,且文件名不超过 8 个字符的文件:
  1. Get-ChildItem -Path $env:windir -Recurse -ErrorAction SilentlyContinue |
  2.   Where-Object { $[i].BaseName -match '\d{2}' -and $[/i].Name.Length -le 8 }
复制代码
本文国际来源:Searching Files with Regular Expressions
作者: sxw    时间: 2014-9-4 18:39

楼主写错了 变量  Get-ChildItem -Path $env:windir -Recurse -ErrorAction SilentlyContinue |  Where-Object { $_.BaseName -match '\d{2}' -and $_.Name.Length -le 8 }




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2