This is a simple way I found to combine all textfiles in a folder into a single file using powershell.
In my case I had several exported sql files that I wanted to combine into a single file. First navigate to the current folder with powershell
PS > $query = Get-ChildItem*
PS > $content = Get-Content $query*
PS > Add-Content combined.sql $content*
Voila!