-
-
Save ktran235/8a0e082a6db54254bccad243e801389c to your computer and use it in GitHub Desktop.
Powershell Script to merge multiple CSV files into one (by appending each file to the end)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$files = Get-ChildItem [INPUT FOLDER PATH - e.g C:\Data\]*.csv | |
Get-Content $files | Set-Content [OUTPUT FILE PATH - e.g C:\Data\MergedCsvFile.csv] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment