Get the folder path in GUI
20 次查看(过去 30 天)
显示 更早的评论
Hi,
Is there any way allow me to do this:
- Cilck the push button, something like the uiputfile poped up
- I choose certain random path and click 'OK'
- this path will be shown as the static text in my GUI
Thanks!
0 个评论
采纳的回答
awezmm
2019-8-8
编辑:awezmm
2019-8-8
Running this:
[file,path] = uiputfile;
returns the selected or specified file path to path.
You can get the fullfile path by doing:
fullfilepath = fullfile(path, file)
You can put the variable fullfilepath into a static text box since it is a string.
1 个评论
Walter Roberson
2019-8-8
However, we recommend not using path as the name of a variable, as that interferes with using the MATLAB function named path
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sources 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!