Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
Daniel Fonsêca
Daniel Fonsêca am 14 Aug. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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?

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 14 Aug. 2018
uigetfile()
  4 Kommentare
Daniel Fonsêca
Daniel Fonsêca am 16 Aug. 2018
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 am 16 Aug. 2018
Bearbeitet: Stephen23 am 16 Aug. 2018
@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')

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by