我正在使用一个函数来调用另一个函数并返回一个 PSObject 数组或多个数组(我认为)。每个循环对象之后的返回是一组值。Function Test2 中 $a 中的数据如下,但计数为 3,表示三个对象或数组,每个文件夹一个。这似乎很正常,如果我将其写入 CSV 以作为报告,我会很好,但我希望操纵每个数组中的数据。当我尝试操纵数据时,它试图操纵数组,我无法搜索或使用每一行中的项目。我也不知道我有多少个文件夹,所以解决方案需要通用且可扩展。我不知道如何轻松访问所有数组中的每一行。
Function Test1 {
[cmdletbinding()]
param(
[Parameter(Position = 0, Mandatory = $true)]
[string]$Folder
)
$array1 = @("Folder1_Test1","Folder1_Test2","Folder1_Test3","Folder1_Test4","Folder1_Test5 ","Folder2_Test6","Folder2_Test7","Folder2_Test8","Folder2_Test9","Folder3_Test1 0")
$array2 = @("Folder1_Test1","Folder1_Test4","Folder1_Test5","Folder2_Test9")
$data = @()
Foreach ($item in $array1) {
If ($item -match $Folder -and $array2 -notcontains $item) {
$Obj = New-Object PSObject -Property @{
Folder = $Folder;
SubFolder = $item;
Message = "$item not found.";
}
$data += $Obj
}
}
Return ,$data
}
Function Test2 {
$Folders = @("Folder1", "Folder2", "Folder3")
$a = $Folders | ForEach-Object {Test1 $_}
$a.Count
foreach ($item in $a)
{
$item.Folder
$item.SubFolder
$item.Message
}
}
然而,$a 的输出是 3。
SubFolder Message Folder
--------- ------- ------
Folder1_Test2 Folder1_Test2 not found. Folder1
Folder1_Test3 Folder1_Test3 not found. Folder1
Folder2_Test6 Folder2_Test6 not found. Folder2
Folder2_Test7 Folder2_Test7 not found. Folder2
Folder2_Test8 Folder2_Test8 not found. Folder2
Folder3_Test10 Folder3_Test10 not found. Folder3
如何访问每个对象内的每一行?我希望能够搜索子文件夹,然后识别它所在的文件夹并编写消息,如下所示:
$a | ForEach-Object | Write-Host {"Subfolder $($_.Subfolder) is in $($_.Folder) and error message is $($_.Message)"}
提前致谢。