如何从PowerShell中删除数组中的项?

时间:2010-02-26 11:23:12

标签: arrays powershell arraylist

我正在使用Powershell 1.0从数组中删除项目。这是我的剧本:

param (
    [string]$backupDir = $(throw "Please supply the directory to housekeep"), 
    [int]$maxAge = 30,
    [switch]$NoRecurse,
    [switch]$KeepDirectories
    )

$days = $maxAge * -1

# do not delete directories with these values in the path
$exclusionList = Get-Content HousekeepBackupsExclusions.txt

if ($NoRecurse)
{
    $filesToDelete = Get-ChildItem $backupDir | where-object {$_.PsIsContainer -ne $true -and $_.LastWriteTime -lt $(Get-Date).AddDays($days)}
}
else
{
    $filesToDelete = Get-ChildItem $backupDir -Recurse | where-object {$_.PsIsContainer -ne $true -and $_.LastWriteTime -lt $(Get-Date).AddDays($days)}
}

foreach ($file in $filesToDelete)
{       
    # remove the file from the deleted list if it's an exclusion
    foreach ($exclusion in $exclusionList)
    {
        "Testing to see if $exclusion is in " + $file.FullName
        if ($file.FullName.Contains($exclusion)) {$filesToDelete.Remove($file); "FOUND ONE!"}
    }
}

我意识到powershell中的Get-ChildItem返回一个System.Array类型。因此,我在尝试使用Remove方法时遇到此错误:

Method invocation failed because [System.Object[]] doesn't contain a method named 'Remove'.

我想要做的是将$ filesToDelete转换为ArrayList,然后使用ArrayList.Remove删除项目。这是一个好主意还是我应该以某种方式直接操作$ filesToDelete作为System.Array?

由于

4 个答案:

答案 0 :(得分:9)

执行此操作的最佳方法是使用Where-Object执行过滤并使用返回的数组。

您还可以使用@splat将多个参数传递给命令(V2中的新参数)。如果你不能升级(你应该尽可能地,那么只需从Get-ChildItems收集输出(只重复那个CmdLet)并在公共代码中进行所有过滤)。

脚本的工作部分变为:

$moreArgs = @{}
if (-not $NoRecurse) {
  $moreArgs["Recurse"] = $true
}

$filesToDelete = Get-ChildItem $BackupDir @moreArgs |
                 where-object {-not $_.PsIsContainer -and 
                               $_.LastWriteTime -lt $(Get-Date).AddDays($days) -and
                              -not $_.FullName.Contains($exclusion)}

在PSH数组中是不可变的,你不能修改它们,但是很容易创建一个新数组(数组上的运算符如+=实际上创建了一个新数组并返回它)。

答案 1 :(得分:3)

我同意理查德的看法,Where-Object应该在这里使用。但是,它更难阅读。 我建议的是什么:

# get $filesToDelete and #exclusionList. In V2 use splatting as proposed by Richard.

$res = $filesToDelete | % {
    $file = $_
    $isExcluded = ($exclusionList | % { $file.FullName.Contains($_) } )
    if (!$isExcluded) { 
        $file
    }
}

#the  files are in $res

另请注意,通常无法迭代集合并进行更改。你会得到一个例外。

$a = New-Object System.Collections.ArrayList
$a.AddRange((1,2,3))
foreach($item in $a) { $a.Add($item*$item) }

An error occurred while enumerating through a collection:
At line:1 char:8
+ foreach <<<< ($item in $a) { $a.Add($item*$item) }
    + CategoryInfo          : InvalidOperation: (System.Collecti...numeratorSimple:ArrayListEnumeratorSimple) [], RuntimeException
    + FullyQualifiedErrorId : BadEnumeration

答案 2 :(得分:0)

这是古老的。但是,我刚才写了这些,使用递归来添加和删除powershell列表。它利用powershell的功能来multiple assignment。也就是说,您可以$a,$b,$c=@('a','b','c')为其变量分配b和c。执行$a,$b=@('a','b','c')会将'a'分配给$a,将@('b','c')分配给$b

首先是按项目值。它将删除第一次出现。

function Remove-ItemFromList ($Item,[array]$List(throw"the item $item was not in the list"),[array]$chckd_list=@())
{

 if ($list.length -lt 1 ) { throw "the item $item was not in the list" }

 $check_item,$temp_list=$list
 if ($check_item -eq $item ) 
    {
      $chckd_list+=$temp_list
      return $chckd_list
    }
 else 
    {
     $chckd_list+=$check_item
     return (Remove-ItemFromList -item $item -chckd_list $chckd_list -list $temp_list )
    }
}

这个按索引删除。你可以通过在初始调用中传递一个值来计算它的好处。

function Remove-IndexFromList ([int]$Index,[array]$List,[array]$chckd_list=@(),[int]$count=0)
{

 if (($list.length+$count-1) -lt $index )
  { throw "the index is out of range" }
 $check_item,$temp_list=$list
 if ($count -eq $index) 
  {
   $chckd_list+=$temp_list
   return $chckd_list
  }
 else 
  {
   $chckd_list+=$check_item
   return (Remove-IndexFromList -count ($count + 1) -index $index -chckd_list $chckd_list -list $temp_list )
  }
}

答案 3 :(得分:0)

这是一个非常老的问题,但是该问题仍然有效,但是没有一个答案适合我的情况,所以我将建议另一个解决方案。

我的情况是,我读了一个xml配置文件,并且想从数组中删除一个元素。

[xml]$content = get-content $file
$element = $content.PathToArray | Where-Object {$_.name -eq "ElementToRemove" }
$element.ParentNode.RemoveChild($element)

这非常简单,可以完成工作。