0 Pluspunkte 0 Minuspunkte

Wie kann ich die Daten aus einer CSV Datei in Powershell Zeile für Zeile ausgeben?

$csvPath = "test.csv"  

$csvData = Import-Csv -Path $csvPath  

$csvData
bezieht sich auf eine Antwort auf: CSV Datei lesen mit Powershell
von  

1 Antwort

0 Pluspunkte 0 Minuspunkte

In einer foreach Schleife wobei jeder Index eine Zeile darstellt.

foreach ($row in $csvData) {
    Write-Output "Spalte 1: $($row.Column1), Spalte 2: $($row.Column2), ..." 
}

von