error in uigetfile "MultiSelect"

15 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 9 Avr 2013
based on the output i want i select images from a folder.... sometimes i want to select one image sometimes more than one image.... so i used 'MultiSelect' option in uigetfile...... but when i use 'MultiSelect' option in uigetfile and select only one image i'm getting error.... how can i use this syntax for selecting both single image and multiple image..... please can someone help me.... please do reply....

Réponse acceptée

Image Analyst
Image Analyst le 9 Avr 2013
Modifié(e) : Image Analyst le 9 Avr 2013
selectedFiles = uigetfile('*.PNG', 'Multiselect', 'on')

Plus de réponses (3)

Jan
Jan le 9 Avr 2013
Modifié(e) : Jan le 9 Avr 2013
You mentioned, that there is an error, but neither showed the code nor the error message. Therefore I guess, that you forgot to care about the type of the replied filename, which is a cell string, not a string. According to the doc text of uigetfile:
[filename, pathname] = uigetfile('*.m', 'Select a MATLAB code file', ...
'MultiSelect', 'on');
if isequal(filename, 0)
disp('User selected Cancel')
return;
end
for k = 1:length(filename)
disp(fullfile(pathname, filename{k}))
end
If this does not help, and for future questions also, please post the code and the error message. The less we have to guess, the easier is the creation of a helpful answer.
[EDITED] I cannot test it currently, but does uigetfile('Multiselect', 'on') reply a string instead of a cell string, if only one file has been selected? If so an additional line is needed:
[filename, pathname] = uigetfile('*.m', 'Select a MATLAB code file', ...
'MultiSelect', 'on');
if isequal(filename, 0)
disp('User selected Cancel')
return;
end
filename = cellstr(filename); % Care for the correct type
for k = 1:length(filename)
disp(fullfile(pathname, filename{k}))
end
  6 commentaires
Jan
Jan le 9 Avr 2013
What is "NegFileNames"? Without knowing, how it is created, I cannot guess, why it has 6 or 7 elements.
Did Image Analyst's answer solve your problem already? If not, why did you accept it?
Image Analyst
Image Analyst le 9 Avr 2013
Like Jan said, knowing the error would have been nice since we'd know if the problem was in your calling uigetfile(), or if it was how you were processing the filename(s) afterwards. Please review this: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

Connectez-vous pour commenter.


Ozan Oguz
Ozan Oguz le 12 Juin 2013
I have a question here (similar but there is an obvious difference):
I am using uigetfile / multiselect option. There are 3 possibilities:
1) Cancel or exit (output 0) 2) Select only one file (output as string) 3) Select multiple files (cell as array of strings)
As you will notice, they all give outputs in different formats.
I am putting names of selected files into a PopupList. If you decide to add a new file to the list, you again click a button of uigetfile. Get old list, add to the new selection...
Should I use several if cases and change formats of these outputs several times as needed? Or are there any other practical way.
  2 commentaires
Image Analyst
Image Analyst le 12 Juin 2013
Yes, use an if to take different actions depending on whether 0, 1, or multiple filenames are returned.
Jan
Jan le 13 Juin 2013
@Ozan Oguz: Please do not highjack a foreign question, but open a new thread instead. Note that you cannot accept an answer here, when you are not the author of the original question.

Connectez-vous pour commenter.


Ozan Oguz
Ozan Oguz le 13 Juin 2013
People, I need this code to work correctly, but I couldn't manage it. Please help me! Don't say "read the relevant help files" etc.
old_list = get(interface.List,'String');
[selected_files,directory] = uigetfile({'*.unv';'*.uff'}, 'Select files to be used', 'Multiselect','on');
if (selected_files==0)
msgbox('You selected nothing, and it returned a zero without any characters around it.');
elseif (Logical something indicating that I selected only one file.)
msgbox('You selected only one file');
elseif (Logical something indicating that I selected multiple files at once.)
msgbox('You selected multiple files.');
end
  3 commentaires
Jan
Jan le 13 Juin 2013
@Ozan Oguz: Please do not highjack a foreign question, but open a new thread instead. Note that you cannot accept an answer here, when you are not the author of the original question.
Othmane ELMOUATAMID
Othmane ELMOUATAMID le 20 Juil 2018
@Ozan Oguz : try this code
[selected_files,directory] = uigetfile({'*.unv';'*.uff'}, 'Select files to be used', 'Multiselect','on');
if iscell(selected_files)
nbfiles = length(selected_files);
msgbox('You selected multiple files.');
disp(nbfiles);
elseif selected_files ~= 0
nbfiles = 1;
msgbox('You selected only one file');
disp(nbfiles);
else
nbfiles = 0;
msgbox('You selected nothing, and it returned a zero without any characters around it.');
disp(nbfiles);
end

Connectez-vous pour commenter.

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by