Which is better to use in my case -uigetfile or uigetdir?

조회 수: 1 (최근 30일)
Ashish
Ashish 2014년 6월 24일
편집: Ashish 2014년 6월 24일
I have a archived files in the following location- C:\Archive\project_dir\project_folder.
I have a Browse button in the GUI, which should allow to choose the entire project folder (It consists of .mat files). Which command is better for my requirement, uigetfile or uigetdir?
Note: Also, I need to have a check if the user has selected the file within the folder C:\Archive\project_dir. It is not possible to select the project_folder outside this directory location.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 6월 24일
f='C:\Archive\project_dir\project_folder\'
[file,pat]=uigetfile(f,'*.mat')
yourfile=fullfile(pat,file)
test=isequal(f,pat) % to check if the user has selected the right folder
  댓글 수: 1
Ashish
Ashish 2014년 6월 24일
편집: Ashish 2014년 6월 24일
Thanks Azzi.
Actually, I have to select the project folder and not the .mat files within. When running the code, I am not able to select the entire folder!
Can you suggest a solution?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by