App Designer: Use Tree to Browse Directory

10 views (last 30 days)
Can a tree be used to browse a directory? Need to select multiple files and move them from one path to the next.
  2 Comments
Adam Danz
Adam Danz on 14 May 2019
Edited: Adam Danz on 15 May 2019
Does uigetfile() work for you?
Stirnemann
Stirnemann on 15 May 2019
Different than I was thinking, but this will work. Thank you.

Sign in to comment.

Accepted Answer

Sayyed Ahmad
Sayyed Ahmad on 15 May 2019
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');
"

More Answers (0)

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!