Could I use uigetfile without Message "no file, check the file name...." ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I use this code in MATLAB R2012a.
[fileName, pathName, filterIndex] = uigetfile({'*.*';'*.xls';'*.txt';'*.csv'}, 'Select file(s)', 'MultiSelect', 'on','D:\');
0 Commenti
Risposta accettata
Image Analyst
il 28 Ott 2013
Most likely you just tried to use fileName. Bad decision. You need to construct the full filename (folder plus base filename plus extension):
fullFileName = fullfile(pathName, fileName);
Then use fullFileName wherever you tried to use fileName in subsequent code.
3 Commenti
Image Analyst
il 28 Ott 2013
Then you then you did not use fullfile() as I recommended because if you did, it would have shown a folder name.
Più risposte (1)
Walter Roberson
il 28 Ott 2013
That code will not emit that message. The code you have after it might emit such a message.
0 Commenti
Vedere anche
Categorie
Scopri di più su Debugging and Analysis in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!