populate a listbox with selected folder doc file names - App designer

24 次查看(过去 30 天)
How can I populate a listbox with all doc files in a selected folder using a button in App designer?
function selectDocButtonPushed(app, event)
app.selectedPath = uigetdir();
docFileInfo = dir('*.doc')
app.docListBox.Items = docFileInfo.name
end

采纳的回答

Adam Danz
Adam Danz 2020-8-10
编辑:Adam Danz 2020-8-10
Give this a shot,
docFileInfo = dir(fullfile(app.selectedPath, '*.doc'));
app.docListBox.Items = {docFileInfo.name}';
  4 个评论
Ely Raz
Ely Raz 2020-8-10
Thank a lot. I meant how can I store the one file which is marked/selected in the listbox?
Adam Danz
Adam Danz 2020-8-10
编辑:Adam Danz 2020-8-11
Here's what you need to know about the listbox.
1) app.ListBox.Items stores what you seein the list.
2) app.ListBox.ItemsData is used to store optiona info about each item in the list. This is what is returned when you fetch the currently selected item.
3) app.ListBox.Value returns the currently selected ItemsData.
So, what I recommend is to store the file names in Items and the full paths in ItemsData. Then, to get the full path of the selected item, you just need to access the Value property.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by