PowerShell: Elencare solo i file
Un esempio PowerShell di come elencare solo i file presenti in una cartella
oppure solo le directory (tolto keyword -not)
PowerShell
Get-ChildItem C:\ | Where-Object {-not ($_.mode -match "d")}
PowerShell
Get-ChildItem C:\ | Where-Object {$_.mode -match "d"}