Hello!
I have multiple .txt files in a folder and I want to convert them all to .csv. I am trying this way but it didn't work, thank you!
Hi Paola,
Please give a try with the script below for your loop:
for id = 1:numel(FileList) [~, f,ext] = fileparts(FileList(id).name); rename = strcat(f,'.csv') ; movefile(FileList(id).name, rename); end
It works! Thank you
Hi Paola,
Please give a try with the script below for your loop: