MATLAB: App Designer: Use Tree to Browse Directory

appdesignerMATLABtree

Can a tree be used to browse a directory? Need to select multiple files and move them from one path to the next.

Best Answer

see the help of uigetfile:
"Enabling multiple file selection in the dialog:
[filename, pathname, filterindex] = uigetfile( ...
{'*.mat','MAT-files (*.mat)'; ...
'*.mdl','Models (*.mdl)'; ...
'*.*', 'All Files (*.*)'}, ...
'Pick a file', ...
'MultiSelect', 'on');
"