powershell命令仅输出目录列表

powershell命令仅输出目录列表

大于powershell 3.0版本可以使用Get-Item、ls、dir、gci

Get-Item

Get-ChildItem -Directory
Get-ChildItem "$path" |  where {$_.Attributes -match'Directory'}
Get-ChildItem "$path" -attributes D -Recurse


ls(alias)

ls -dir

dir

dir -dir

小于powershell 3.0版本

Get-ChildItem -Recurse | ?{ $_.PSIsContainer }


如果你想要目录的原始字符串名称,你可以这么做

Get-ChildItem -Recurse | ?{ $_.PSIsContainer } | Select-Object FullName
上一篇:nts协议简析


下一篇:centos7安装tomcat10