我在 Windows 中有一个目录结构,如下所示:
\Root
\SUB-DIR1
\A1
\B1
\AA1
\SUB-DIR2
\A2
\C2
\AA2
\SUB-DIR3
\A3
\B3
\AA3
我想使用诸如"starts with 'AA' and the length of the subdirectory name is 3" 之类的查询来计算目录(不是文件) 。
我试过了:
$f = get-childitem -Path C:\ROOT -recurse
Write-Host $f.Count
...但我不确定如何过滤特定的子项目并计算它。Powershell 或 Cmd 会有很大帮助。