代码之家  ›  专栏  ›  技术社区  ›  nano

查找包含字符串的所有路径

  •  0
  • nano  · 技术社区  · 6 年前

    是否可以制作一个脚本来查找包含字符串的所有路径

    我基本上想要的是*\path\to\file*有效的完整路径。。

    你是如何在windows中做到这一点的,你甚至可以做到这一点??

    1 回复  |  直到 6 年前
        1
  •  2
  •   user6811411 user6811411    6 年前

    简短版本:

    gci -path X:\start\here -r |?{ $_.FullName -match [regex]::escape("\path\to\file") }|%{$_.FullName}
    

    以及详细版本:

    Get-ChildItem -Path X:\start\here -Recurse |
      Where-Object {$_.FullName -match [regex]::escape("\path\to\file")} |
        ForEach-Object { $_.FullName }
    

    样本输出(不同路径)

    > gci -path q:\test -r |?{ $_.FullName -match [regex]::escape("\05\06\") }|%{$_.FullName}
    Q:\test\2017\05\06\18-33.ps1
    Q:\test\2017\05\06\19-46.cmd
    Q:\test\2017\05\06\data.csv
    Q:\test\2017\05\06\list.txt
    Q:\test\2018\05\06\test
    Q:\test\2018\05\06\Clipb2Var.cmd
    Q:\test\2018\05\06\test\test.txt