如何检查目录是否包含Powershell中的另一个目录?

时间:2017-07-25 01:56:38

标签: windows powershell directory

我在powershell中寻找一种简单的(如果可能的话)方法来检查一个目录是否包含至少一个其他目录。

1 个答案:

答案 0 :(得分:1)

$dir = '.'  # specify the directory to investigate
$hasAnySubdir = (Get-ChildItem -Force -Directory $dir).Count -gt 0

-Directory(PSv3 +)确保Get-ChildItem仅枚举子目录-Force确保即使隐藏子目录也是如此包括在内。