1

我正在编写一个简单的 DLL 复制脚本来帮助我的开发团队设置他们的本地环境。我检查了构建 devdrop 文件夹并获得了 DLL 文件列表。然后我查看本地文件夹并复制任何较新的 DLL。

我的问题是当本地文件夹为空时(即脚本第一次运行),它就会崩溃。

$newFiles = Get-ChildItem -recurse -path "$drop\$latest\ship" -name
$oldFiles = Get-ChildItem -recurse -path $bin -name

$files = Compare-Object $newFiles $oldFiles -IncludeEqual -PassThru
$files | Where-Object { $_.SideIndicator -eq '<=' -or $_.SideIndicator -eq '=='} | % {
    Copy-Item -Path "$drop\$latest\ship\$_" -Destination $bin -Force
}

当 $bin 为空时,gci 调用将 $oldFiles 保留为空,这给了我一个很好的错误:

比较对象:无法将参数绑定到参数“DifferenceObject”,因为它为空。

我四处搜索,所有比较对象的操作方法似乎都没有处理这个问题。我可以检查文件夹是否为空,然后将所有文件复制过来,但我想知道是否有更好的方法。

干杯。

4

1 回答 1

5
$newFiles = @(Get-ChildItem -recurse -path "$drop\$latest\ship" -name)
$oldFiles = @(Get-ChildItem -recurse -path $bin -name)
$files = Compare-Object -ReferenceObject $newFiles -DifferenceObject $oldFiles -IncludeEqual -PassThru
于 2012-11-22T02:51:39.043 回答