How to use the function uigetfile?
16 ビュー (過去 30 日間)
古いコメントを表示
Shahar ben ezra
2021 年 7 月 13 日
コメント済み: Shahar ben ezra
2021 年 7 月 14 日
When I use the uigetfile function
And want to select any file that is not in the same folder as my M file code
I'm getting an error
How can I select the file from any folder on my computer?
0 件のコメント
採用された回答
Walter Roberson
2021 年 7 月 13 日
[read_my_file, rmfdir] = uigetfile('*.xlsx')
if ~ischar(read_my_file); return; end %user cancel
rmfn = fullfile(rmfdir, read_my_file)
read_my_file_table = readtable(rmfn) ;
その他の回答 (1 件)
ANKUR KUMAR
2021 年 7 月 13 日
編集済み: ANKUR KUMAR
2021 年 7 月 13 日
"How can I select the file from any folder on my computer?"
This is pretty simple. You need to provide the full path of the file while calling uigetfile function.
uigetfile('D:\folder\subfolder\subsubfolder\*.xlsx')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!