列出 Powershell 中给定深度或以下的文件夹

List folders at or below a given depth in Powershell

我有一个包含很多文件夹的目录。我想列出所有深度超过 2 层的文件夹(路径)。所以在下面的情况下,文件夹 1 和 2.

Directory/folder1
Directory/folder1/test1/test/testsub
Directory/folder1/test2
Directory/folder1/test3
Directory/folder2/blablabla/bla/1
Directory/folder3/test
Directory/folder4/test
Directory/folder5/test

我正在尝试以下操作:

$Depth = 3
$Path = "."

$Levels = "\*" * $Depth
$Folder = Get-Item $Path
$FolderFullName = $Folder.FullName
Resolve-Path $FolderFullName$Levels | Get-Item | ? {$_.PsIsContainer} | Write-Host

请试试这个

$Folders = Get-ChildItem 'C:\Program Files' -Directory -Recurse -Depth 1 | 
     Select-Object -ExpandProperty fullname | 
     Sort-Object
$Folders

下面的解决方案是您自己构建的,假设您的意图是找到那些子目录的子目录超过给定深度

如果您想查找给定深度 或更深 的所有目录路径,请参阅底部部分。
您的方法无法实现这一点,因为它只能在给定深度找到目录,而不是在给定深度以下。


您自己的基于通配符的聪明方法原则上应该可行,但是:

  • (a)可以大大精简

  • (b) 需要额外的工作来将输出限制为子树太深的那些子文件夹的不同列表。

(a) 简化您的方法:

$Depth = 3
$Path = '.'

$Levels = '/*' * $Depth
Get-ChildItem -Directory $Path/$Levels
  • 与您自己的方法一样,'/*' * $Depth 动态创建多目录级通配符表达式(例如,/*/* 用于 $Depth of 2) 可以附加到输入 $Path 以仅匹配该级别的路径。

  • -Directory 开关 (PSv3+) 限制仅匹配目录。

(b) 将输出限制为子树太深的不同顶级文件夹集:

$Depth = 3
$Path = '.'

$Levels = '/*' * $Depth
Get-ChildItem -Directory $Path/$Levels |
  ForEach-Object { ($_.FullName -split '[\/]')[-$Depth] } |
    Select-Object -Unique

注意:按 [/\] 拆分 - 即按 /\ - 使解决方案也适用于类 Unix 平台(PowerShell 核心);在 Windows 上,-split '\'(通过转义 \)就足够了。

根据您的示例文件夹层次结构,以上内容将产生:

folder1
folder2
  • 如果您想要 完整路径,请附加
    | Convert-Path -LiteralPath { "$Path/$_" }.

  • 如果您想要 目录信息对象 ([System.IO.DirectoryInfo]),请附加
    | Get-Item -LiteralPath { "$Path/$_" }.


可选阅读:使文件夹达到、达到或超过特定深度:

注:

  • 即使下面的解决方案针对 folders(目录),您也可以通过简单地省略 files =22=],或仅通过将 -Directory 替换为 -File.

  • 来定位文件
  • 为简单起见,这些命令隐式以当前目录为目标。


At-a-仅给定深度 逻辑:

这与上述解决方案中采用的逻辑相同;以下代码列出了深度为 2 only 的文件夹,即孙级别的文件夹(子目录的子目录)——请注意,与 Get-ChildItem -Depth 不同,深度计数以 1,即1指的是子目录:

$depth = 2 # grandchild directories only

Get-ChildItem -Directory -Path ('*/' * $depth)
  • 要输出 完整路径 ,请将 Get-ChildItem 命令包含在 (...).FullName 中或将其通过管道传输到 Select-Object -ExpandProperty FullName

  • 要输出相对路径(例如,folder1/test1/test/testsub),需要额外的工作,因为添加-Namenot 在这种情况下按预期工作(它将仅输出目录 names):

$depth = 2 # grandchild directories

# Calculate the length of the path prefix for determining relative paths.
# (Using the current dir ($PWD) as the reference path here.)
$PrefixLen = (Convert-Path -LiteralPath $PWD).Length + 1

$Levels = '/*' * $Depth
Get-ChildItem -Directory -Path ('*/' * $depth) |
  ForEach-Object { $_.FullName.Substring($PrefixLen) }

最多-给定深度逻辑:

PSv5+ -Depth参数限制Get-ChildItem的递归深度,即它只查找项目直到指定的深度,但请注意它是 深度 0,而不是 1 表示 直系子节点
请注意,使用 -Depth 意味着 -Recurse,尽管您也可以指定后者。

例如,要枚举当前目录中的子文件夹和孙文件夹(2 级),使用:

$depth = 2 # child and grandchild directories

Get-ChildItem -Directory -Depth ($depth - 1)
  • 要输出 完整路径 ,请将 Get-ChildItem 命令包含在 (...).FullName 中或将其通过管道传输到 Select-Object -ExpandProperty FullName

  • 要输出相对路径,只需将-Name开关添加到Get-ChildItem调用即可。

At-a-给定深度或更深 逻辑:

将结果限制为大于或等于给定深度的项目需要自定义解决方案:

$depth = 2 # grandchild directories and below

Get-ChildItem -Directory -Name -Recurse |
  Where-Object { ($_ -split '[/\]').Count -ge 2 } |
    Get-Item -LiteralPath { "$PWD/$_" }

如果您的输入路径不是(隐含的)当前目录,请将该路径替换为 $PWD

  • 要输出完整路径,请将Get-Item替换为Convert-Path

  • 要输出相对路径,只需省略Get-Item调用即可。