Azzera filtri
Azzera filtri

How to save a file with a dialog box

6 visualizzazioni (ultimi 30 giorni)
Paul Nanfah
Paul Nanfah il 11 Mag 2016
Modificato: Azzi Abdelmalek il 11 Mag 2016
hi everyone, I want to save a MyFile.txt from the current folder in another folder with a dialog box so that I can change the name and the folder. i used
[file,path] = uiputfile('MyFile.txt','Save my file');
hier the dialog box get opened but there is no saved file when i save. so I thought I could used this one
copyfile('MyFile.txt',uigetdir('C\:',);
but it doesn't work either. how can i do that?
Thank you

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 11 Mag 2016
Modificato: Azzi Abdelmalek il 11 Mag 2016
[file,path]=uigetfile
name=fullfile(path,file) % The file name with the path
df='destination' % Your destination folder
nameF=fullfile(df,file);
copyfile(name,nameF)

Categorie

Scopri di più su Files and Folders in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by