Use text concatenated with GUI variable in filename

조회 수: 1 (최근 30일)
Deirdre
Deirdre 2014년 2월 3일
편집: Azzi Abdelmalek 2014년 2월 3일
I'm trying to open a file and write to it but I keep getting this error: "Error using fprintf, Invalid file identifier. Use fopen to generate a valid file identifier." I need the file name to be a text edit from a GUI (patientid) combined with the date and time.
code:
id = get(handles.patientid,'String');
filename = strcat(id,': ',datestr(now));
fileID = fopen(filename,'w');
fprintf(fileID,...);
fclose(fileID)
thanks!

답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 2월 3일
편집: Azzi Abdelmalek 2014년 2월 3일
The filename with : is not valid
try
id = get(handles.patientid,'String');
filename = strcat(id,datestr(now,'dd-mm-yyyy HH-MM-SS'),'.txt');
fileID = fopen(filename,'w');
fprintf(fileID,...);
fclose(fileID)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by