UIGETFILE start in another directory AND choose two default file types

38 次查看(过去 30 天)
I am using UIGETFILE to choose Excel files, with .xls AND .xlsx extension. Also, I want UIGETFILE to start in another directory. I already looked at the documentation and in this post. I know I would have to use something like this:
uigetfile([pwd '\folder1\*.xls'], 'Select file');
However, that would only allow me to select .xls files. I want it to allow me to select .xls files AND .xlsx files.
How can I do this?

采纳的回答

Fangjun Jiang
Fangjun Jiang 2011-8-18
uigetfile(fullfile(pwd,'folder1','*.xls;*.xlsx'),'select file')

更多回答(1 个)

William Frane
William Frane 2012-1-20
There's a slightly more flexible way to accomplish this:
uigetfile({'*.txt;*.doc' 'Text file or Word document';'*.txt' 'Text file'; '*.doc' 'Word document'},'Select a file','C:\');
This makes use of uigetfile's optional DefaultName argument to specify the starting path. Since FilterSpec isn't being used to provide the path, it can be a cell array of strings, which enables the use of custom file type descriptions (something that's not possible if FilterSpec is a single string as in the example above).

类别

Help CenterFile Exchange 中查找有关 Text Data Preparation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by