I need to merge CSV files and want to use following command from post Merging multiple CSV files into one using PowerShell.
Get-ChildItem -Filter *.csv |
Select-Object -ExpandProperty FullName |
Import-Csv |
Export-Csv .\merged\merged.csv -NoTypeInformation -Append
However, only the first column of the source CSV files ends up in merged.csv
.