Info

This question is closed. Reopen it to edit or answer.

Editing large number of dat files

1 view (last 30 days)
012786534
012786534 on 8 Jun 2017
Closed: MATLAB Answer Bot on 20 Aug 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

Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!