Hello I\'m looking for powershell script which would merge all csv files in a directory into one text file (.txt) . All csv files have same header which is always stored in
Try this, it worked for me
Get-Content *.csv| Add-Content output.csv