Combing the content of all files in a directory into a file.
REM Combine files in a directory into one file.
TYPE ..\folder1\*.sql > folder1.sql
TYPE ..\folder2\*.sql > folder2.sql
Combing the content of all files in a directory into a file.
REM Combine files in a directory into one file.
TYPE ..\folder1\*.sql > folder1.sql
TYPE ..\folder2\*.sql > folder2.sql
Comments