Sans cmdlets supplémentaires installés, vous pouvez simplement utiliser Get-ChildItem
:
Get-ChildItem -Filter *.zip -Recurse $pwd
Le Find-ChildItem
L'applet de commande dans Windows Powershell est un équivalent de la commande de recherche Unix/Linux
http://windows-powershell-scripts.blogspot.in/2009/08/unix-linux-find-equivalent-in.html
Certaines des options Find-ChildItem
Find-ChildItem -Type f -Name ".*.exe"
Find-ChildItem -Type f -Name "\.c$" -Exec "Get-Content {} | Measure-Object -Line -Character -Word"
Find-ChildItem -Type f -Empty
Find-ChildItem -Type f -Empty -OutObject
Find-ChildItem -Type f -Empty -Delete
Find-ChildItem -Type f -Size +9M -Delete
Find-ChildItem -Type d
Find-ChildItem -Type f -Size +50m -WTime +5 -MaxDepth 1 -Delete
Divulgation :je suis le développeur de Find-ChildItem
applet de commande
dir <drive: [drive:]> /s | findstr /i <pattern>
- alternative -
dir /s <drive:>\<pattern>
exemple
dir c: d: /s | findstr /i example.txt
- alternative -
dir /s c:\example.txt