UI get file or dirrectory

25 ビュー (過去 30 日間)
Adam
Adam 2012 年 11 月 12 日
Is there a command similar to, or a way to utilize either uigetfile, or uigetdir that allows a user to select either a file OR a directory and not just one or the other?
e.g. i have a function which will parse/import an entier directory, or individually specified files and i would like a UI window which allows the user to select individual files to be imported or a directory to be imported.

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 12 日
編集済み: Azzi Abdelmalek 2012 年 11 月 12 日
[file,folder]=uigetfile
if you want to have a file name with its path
fic=fullfile(folder,file)
  2 件のコメント
Adam
Adam 2012 年 11 月 12 日
The 'uigetfile' function allows a user to select a file(s) and outputs the file name and the folder in which it resides. It does not however allow for a user to select a folder on its own.
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 11 月 12 日
The use uigetdir. If you want him to choose add a code like this
str ={'select file','select folder'}
s = listdlg('PromptString','Select a file:','SelectionMode','single','ListString',str)
if s==1
[file,folder]=uigetfile
else
folder=uigetdir
end

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by