原始链接:PowerShell 技能连载 - 获取指定扩展名的文件
发表日期:2014-08-15
适用于 PowerShell 所有版本
当您使用 `Get-ChildItem` 来获取一个文件列表时,您可能会注意到 `-Filter` 参数有时候会导致返回比你预期的更多的文件。
以下是一个例子。这段代码并不只是返回“.ps1”扩展名的文件,而也会返回“.ps1xml”扩展名的文件:- Get-ChildItem -Path C:\windows -Recurse -ErrorAction SilentlyContinue -Filter *.ps1
复制代码 要限制只返回您需要的扩展名的文件,请用一个 cmdlet 来过滤结果:- Get-ChildItem -Path C:\windows -Recurse -ErrorAction SilentlyContinue -Filter [i].ps1 [/i]
- Where-Object { $_.Extension -eq '.ps1' }
复制代码 这将只返回您指定的扩展名的文件。
本文国际来源:Getting Files with Specific Extensions Only |