請教一下。資料夾裡有 AAA.m,BBB.m,CCC.m。
想要讀取這資料夾內所有.m檔名並輸出到.txt,.txt內依序排列如下
AAA.txt
BBB.txt
CCC.txt
下列是我嘗試輸出用.xlsx。但是我要改成輸出到.txt。
要如何更改呢?謝謝。
clear all ; clc
output = dir('*.m') ;
rowoutput = length(output) ;
for i = 1 : 1 : rowoutput
frname{i,:} = ['The file of ' output(i).name] ;
end
writecell( frname, 'TEST.xlsx', 'sheet', 1, 'Range', 'A1') ;