How to concatenate horizontally multiple text files in a folder to have all data in one txt file?
3 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Fangjun Jiang
2016-2-12
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.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!