2

由于 Get-ChildItem 的 -Exclude 参数在使用 -Recurse 标志时未过滤子文件夹,因此请参阅unable-to-exclude-directory-using-get-childitem-exclude-parameter-in-powershell

但 -Exclude 参数可用于过滤掉根级别的文件夹

我写了自己的递归函数:

function Get-ChildItem-Recurse() {
    [cmdletbinding()]
    Param(
      [parameter(ValueFromPipelineByPropertyName = $true)]
      [alias('FullName')]
      [string[]] $Path,
      [string] $Filter,
      [string[]] $Exclude,
      [string[]] $Include,
      [switch] $Recurse = $true,
      [switch] $File = $false
    )

    Process {
      ForEach ( $P in $Path ) {
        Get-ChildItem -Path $P -Filter $Filter -Include $Include -Exclude $Exclude | ForEach-Object {
        if ( -not ( $File -and $_.PSIsContainer ) ) {
          $_
        }
        if ( $Recurse -and $_.PSIsContainer ) {
          $_ | Get-ChildItem-Recurse -Filter $Filter -Exclude $Exclude -Include $Include -Recurse:$Recurse
        }
      }
    }
  }
}

当我将结果通过管道传输到 ForEach-Object 以将结果复制到不同的目的地时,一切正常,并且除了与排除参数匹配的项目之外的项目都被复制

$source = 'D:\Temp\'
$destination = 'D:\Temp_Copy\'

Get-ChildItem-Recurse -Path $source -Exclude @( '*NotThis*', '*NotThat*' ) | ForEach-Object {
  $_ | Copy-Item -Destination ( "$($destination)$($_.FullName.Substring($source.Length))" ) -Force 
}

当我将它直接传送到 Copy-Item 命令行开关时,我收到一个空值错误,因为在 $_.FullName 上调用了显然为空的 .Substring()

Get-ChildItem-Recurse -Path $source -Exclude @( '*NotThis*', '*NotThat*' ) |
  Copy-Item -Destination ( "$($destination)$($_.FullName.Substring($source.Length))" ) -Force

因为本机 commandlet Get-ChildItem 确实允许我将其结果通过管道传输到 Copy-Item,所以我喜欢我自己的自定义函数也能够做到这一点。但我无法弄清楚为什么它不起作用。

4

2 回答 2

6

使用脚本块将管道输入值动态绑定到参数:

Get-ChildItem ... |Copy-Item -Destination { "$($destination)$($_.FullName.Substring($source.Length))" }

mklement0 的以下答案包含有关这种动态绑定的大量详细信息(追溯命名为“延迟绑定脚本块”,或通俗地称为“管道绑定脚本块”):
对于 PowerShell cmdlet,我是否可以始终将脚本块传递给字符串参数?

于 2021-12-08T12:49:12.707 回答
0

通常你通过管道复制源:

$source = 'D:\Temp\'
$destination = 'D:\Temp_Copy\'

get-childitem $source | copy-item -destination $destination -whatif
于 2021-12-08T18:30:53.123 回答