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!