Changing save name for text file
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am having issues about changing the name of a file using the fprintf/fileID function. When I try to input a string in the fileID, I get the "invalid filname" error.
Here is the function:
S=strcat(cd,'\Results\',answer,'.txt');
fileID=fopen(answer,'w');
fprintf(fileID,'%9s %9s\r\n','Fixation','Duration (ms)');
fprintf(fileID,'%10.5f %10.5f\r\n',Sc);
fprintf(fileID,'\r\n %10s\r\n','Total time');
fprintf(fileID,'%10.5f',Tt);
fclose(fileID);
1 comentario
Geoff Hayes
el 27 de Mayo de 2014
What is answer defined to be? Why define S and then not use it? If I try to run the above with default values for answer, Sc, and Tt then it works fine. Before you try to write to file, the code should check to see if the file identifier is valid:
fileID = fopen(S,'w');
if fileID > 0
% do stuff
% close file
fclose(fileID);
else
fprintf('Error - could not open file %s\n',S);
end
Respuestas (3)
Sara
el 27 de Mayo de 2014
Use:
S=strcat(cd,'\Results\',[answer,'.txt']);
3 comentarios
Sara
el 27 de Mayo de 2014
I guess the answer could be
fileID=fopen([answer,'.txt'],'w');
given how you were creating S.
Leon Caldeira
el 27 de Mayo de 2014
Editada: Leon Caldeira
el 27 de Mayo de 2014
Roberto
el 27 de Mayo de 2014
possible causes:
- answer contains invalid charater(s) for a file name
- more or less about the same error but the invalid character comes from CD (most comun error: current folder might contain spaces e.g. c:\my folder\ ).
Possible solutions:
- change the current directory to one with no-spaces in the path like C:\myfolder\
- read some solutions here
Geoff Hayes
el 27 de Mayo de 2014
Editada: Geoff Hayes
el 27 de Mayo de 2014
Given your comment as to the return value for answer in Sara's response to your question, I almost think that answer is a cell array rather than a string. Just prior to evaluating
fileID=fopen([answer,'.txt'],'w');
type in the command window
[answer,'.txt']
and
class(answer)
What is returned? If I type the following answer initializations in my command window I see
>> answer = 'Leon'
answer =
Leon
>> answer = {'Leon'}
answer =
'Leon'
The second matches your return value. If it is indeed a cell array, then either replace with the string equivalent OR access the string value via answer{1} as a string must be passed as an input to the fopen function.
0 comentarios
Ver también
Categorías
Más información sobre Low-Level File I/O en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!