我正在尝试比较两个csv文件。我想检查是否有名称相同但内容不同的对象,但我不知道该怎么做。你能帮我吗?
$File1 = Import-Csv -Path "C:\Users\PM\Desktop\Migration\file1.csv"
$File2 = Import-Csv -Path "C:\Users\PM\Desktop\Migration\file2.csv"
$Tot_File = $File1 + $File2
Foreach($file in $Tot_File)
{
$ident = $file.nom + $User.prenom + $address.address
Write-Host $file.Name -ForegroundColor White
Write-Host $file.LastName -ForegroundColor DarkCyan
Write-Host $file.Address -ForegroundColor DarkYellow
}
在输出中,我有重复的对象。在名称方面,我不希望加倍。