How can I use uigetfile to get the file path?
57 ビュー (過去 30 日間)
古いコメントを表示
Hello, I was wondering if I could use the function uigetfile to get the complete file path string.
0 件のコメント
採用された回答
Image Analyst
2013 年 4 月 12 日
The documentation for uigetfile() is remiss in not showing any examples that use fullfile() to construct the full file name of the chosen file. Here is how you do it:
[baseName, folder] = uigetfile();
fullFileName = fullfile(folder, baseName)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!