我在powershell中寻找一种简单的(如果可能的话)方法来检查一个目录是否包含至少一个其他目录。
答案 0 :(得分:1)
$dir = '.' # specify the directory to investigate
$hasAnySubdir = (Get-ChildItem -Force -Directory $dir).Count -gt 0
-Directory
(PSv3 +)确保Get-ChildItem
仅枚举子目录,-Force
确保即使隐藏子目录也是如此包括在内。