RosettaCodeData/Task/Walk-a-directory-Recursively/PowerShell/walk-a-directory-recursively-2.psh
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

2 lines
93 B
Text

Get-ChildItem -Recurse |
Where-Object { $_.Name -match 'foo[0-9]' -and $_.Length -gt 5MB }