Windows命令行中的DIR命令

时间:2014-06-01 07:29:52

标签: windows command-line dir

如何使用DIR命令列出所有不包含文件的目录,包括子目录?我已经详细研究了这个,只能找到如何删除指定的目录,但实际上并没有列出它们。有人可以帮忙吗?除了DIR命令之外还有更好的方法吗?

1 个答案:

答案 0 :(得分:0)

你可以修改linked question上的Powerscript答案来显示而不是像这样删除:

Get-ChildItem -Recurse . | where { $_.PSISContainer -and @( $_ | Get-ChildItem ).Count -eq 0 } | Select-Object -Property FullName