kullanım
Get-ChildItem -dir #lists only directories
Get-ChildItem -file #lists only files
Takma adları tercih ediyorsanız,
ls -dir #lists only directories
ls -file #lists only files
veya
dir -dir #lists only directories
dir -file #lists only files
Alt dizinleri de yinelemek için -r
seçenek ekleyin .
ls -dir -r #lists only directories recursively
ls -file -r #lists only files recursively
PowerShell 4.0, PowerShell 5.0 (Windows 10), PowerShell Core 6.0 (Windows 10, Mac ve Linux) ve PowerShell 7.0 (Windows 10, Mac ve Linux) üzerinde test edilmiştir .
Not : PowerShell Core'da, -r
anahtarı belirttiğinizde sembolik bağlantılar izlenmez . Sembolik bağlantıları izlemek için -FollowSymlink
anahtarı ile belirtin -r
.
Not 2 : 6.0 sürümünden bu yana PowerShell artık platformlar arasıdır. Platformlar arası sürüm ilk olarak PowerShell Core olarak adlandırıldı, ancak "Core" kelimesi PowerShell 7.0+ sürümünden bu yana kaldırıldı.
Get-ChildItem belgeleri: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-childitem