Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Editing large number of dat files

1 visualización (últimos 30 días)
012786534
012786534 el 8 de Jun. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello all,
I want to add the same comment to the second line of a large number of dat files and then place them in a new folder.
I was thinking of doing something like this:
NewFiles = fullfile(pwd, 'NewFiles')
if exist([pwd '\NewFiles'])~=7
mkdir(NewFiles);
end
files = dir(fullfile('*.dat'));
filenames = {files.name};
for i = 1 : length(filenames)
fid(i) = fopen(files(i),'w');
fprintf(fid,'try \n');
fclose(fid);
dlmwrite(fname,'-append') ;
end
This code does not work, obviously.
Any suggestions ?
Thank you

Respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by