Filter löschen
Filter löschen

I wanna save string data in my gui with txt format but I want to choose directory and file name in dialog box

1 Ansicht (letzte 30 Tage)
for example;
string=[100, 150, 200]
I want to save this data with .txt format in dialog box which enables me to choose directory and file name like uiputfile.

Akzeptierte Antwort

David Sanchez
David Sanchez am 22 Mai 2013
[file_name PathName] = uigetfile('*.mat','Select *.mat file');
full_file_path = fullfile(PathName, file_name);
fid = fopen('my_txt_file.txt','w'); % open file for writting
fwrite(fid,full_file_path);
fclose(fid);
  1 Kommentar
sermet
sermet am 22 Mai 2013
[file_name PathName] = uigetfile('*.mat','Select *.mat file'); in here, which .mat files I have to choose, I don't have any .mat files, I wanna save my string data in GUI.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Low-Level File I/O finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by