ใช้
Get-ChildItem -dir #lists only directories
Get-ChildItem -file #lists only files
หากคุณต้องการนามแฝงให้ใช้
ls -dir #lists only directories
ls -file #lists only files
หรือ
dir -dir #lists only directories
dir -file #lists only files
หากต้องการเรียกคืนไดเรกทอรีย่อยด้วยให้เพิ่ม-r
ตัวเลือก
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 และ Linux) และPowerShell 7.0 (Windows 10, Mac และ Linux)
หมายเหตุ : บน PowerShell Core symlinks จะไม่ถูกติดตามเมื่อคุณระบุ-r
สวิตช์ ที่จะปฏิบัติตาม symlinks ระบุสลับกับ-FollowSymlink
-r
หมายเหตุ 2 : PowerShell ตอนนี้ข้ามแพลตฟอร์มตั้งแต่รุ่น 6.0 รุ่นข้ามแพลตฟอร์มเดิมเรียกว่า PowerShell Core แต่คำว่า "Core" ถูกลบตั้งแต่ PowerShell 7.0+
รับเอกสาร Child -em: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-childitem