Last active
April 23, 2021 19:53
-
-
Save idcesares/4579bc4c89ab97e88f2af4f27d327c4e to your computer and use it in GitHub Desktop.
Combine multiple CSV files into one using Powershell
This file contains hidden or 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
Get-ChildItem -Filter *.csv | Select-Object -ExpandProperty FullName | Import-Csv | Export-Csv .\combinedcsvs.csv -NoTypeInformation -Encoding UTF8 -Append |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notes: