Powershell脚本显示子文件夹的数量

时间:2016-03-31 14:39:55

标签: powershell

我试图运行一个PowerShell脚本,在我的根目录中返回子文件夹的子文件夹数。

E.g。根目录C:\ temp 子文件夹是C:\ temp \ 1和C:\ temp \ 2,每个子文件夹都有x个子文件夹

我想在C:\ temp \ 1和C:\ temp \ 2中看到子文件夹的数量,如果它们在C:\ temp \ 1或C:\ temp \ 2下。

到目前为止,我只能得到一个完整的子文件夹数。

1 个答案:

答案 0 :(得分:1)

非常简单:

Get-ChildItem C:\Temp -Directory `
| Select-Object @{n='FullName';e={$_.FullName}},@{n='SubFolderCount';e={(Get-ChildItem $_.FullName -Recurse -Directory).Count}} `
| Format-Table -Autosize;