How to programm a app which selects files from a file folder

I'm new using the GUIDE, and I'm building a programm I want to read files from a file folder. To the app read those files, I want to put the file folder adress. Could you help me?

回答 (1 件)

Fangjun Jiang
Fangjun Jiang 2018 年 8 月 14 日

0 投票

uigetfile()

4 件のコメント

Sean de Wolski
Sean de Wolski 2018 年 8 月 14 日
And
uigetdir
Also consider using appdesigner instead of GUIDE.
Daniel Fonsêca
Daniel Fonsêca 2018 年 8 月 16 日
Thanks by help me, but I would like a function which I select the adress from past and the Current Folder from Matlab change
Daniel Fonsêca
Daniel Fonsêca 2018 年 8 月 16 日
I discovered that function. It's "cd". Thanks by help me ;)
https://www.mathworks.com/help/matlab/ref/cd.html#bu_45_g-2
Stephen23
Stephen23 2018 年 8 月 16 日
編集済み: Stephen23 2018 年 8 月 16 日
@Daniel Fonsêca: don't use cd: it slows down your code and makes debugging harder. Just use absolute/relative filenames, which are much more efficient. Just use fullfile like this:
D = 'directory where the files are';
F = fullfile(D,'name of the file.txt')

この質問は閉じられています。

質問済み:

2018 年 8 月 14 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by