Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 2 (최근 30일)
Daniel Fonsêca
Daniel Fonsêca 2018년 8월 14일
마감: MATLAB Answer Bot 2021년 8월 20일
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일
uigetfile()
  댓글 수: 4
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')

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by