DOS CMD Prompt - Merge multiple text files into one big file

Post date: Sep 11, 2012 8:29:44 AM

Change the *.txt filter to match the files you wish to include in the merged file. Your new text file will be named NewMergedFile.txt.

FOR %I IN (*.txt) DO TYPE %I>> NewMergedFile.txt