Sử dụng
Get-ChildItem -dir #lists only directories
Get-ChildItem -file #lists only files
Nếu bạn thích bí danh, sử dụng
ls -dir #lists only directories
ls -file #lists only files
hoặc là
dir -dir #lists only directories
dir -file #lists only files
Để tái diễn các thư mục con là tốt, thêm -r
tùy chọn.
ls -dir -r #lists only directories recursively
ls -file -r #lists only files recursively
Đã thử nghiệm trên PowerShell 4.0, PowerShell 5.0 (Windows 10), PowerShell Core 6.0 (Windows 10, Mac và Linux) và PowerShell 7.0 (Windows 10, Mac và Linux).
Lưu ý : Trên PowerShell Core, symlink không được theo dõi khi bạn chỉ định công -r
tắc. Để theo liên kết tượng trưng, chỉ định -FollowSymlink
chuyển đổi với -r
.
Lưu ý 2 : PowerShell hiện là đa nền tảng, kể từ phiên bản 6.0. Phiên bản đa nền tảng ban đầu được gọi là PowerShell Core, nhưng từ "Core" đã bị loại bỏ kể từ PowerShell 7.0+.
Tài liệu Get-ChildItem: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.man quản lý / get-childitem