How to concatenate horizontally multiple text files in a folder to have all data in one txt file?

3 visualizzazioni (ultimi 30 giorni)
Have 25 files in a folder each having around 1,000,000 rows. And want to have one text file having all the data i.e. 25,000,000 rows.

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 12 Feb 2016
The old fashion DOS command copy could do the task. You can also call it in MATLAB using system(). The trick is the "+" symbol.
system('copy test1.txt+test2.txt+test3.txt test.txt')
As long as there is a carriage return at the end of each text file, the concatenate looks right.

Più risposte (0)

Categorie

Scopri di più su Large Files and Big Data in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by