Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
How to programm a app which selects files from a file folder
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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?
0 commentaires
Réponses (1)
Fangjun Jiang
le 14 Août 2018
uigetfile()
4 commentaires
Stephen23
le 16 Août 2018
Modifié(e) : Stephen23
le 16 Août 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')
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!