Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Editing large number of dat files

1 vue (au cours des 30 derniers jours)
012786534
012786534 le 8 Juin 2017
Clôturé : MATLAB Answer Bot le 20 Août 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

Réponses (0)

Cette question est clôturée.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by