uigetfile — dialog window to get a file(s) name(s), path and filter index
[FileName[,PathName[,FilterIndex]]]=uigetfile([file_mask[,dir[,boxTitle[,multipleSelection]]]]) PathFileName=uigetfile([file_mask[,dir[,boxTitle[,multiple]]]])
a string matrix which gives the file masks to use for file selection. file_mask
is written with Unix convention. The default value is '*'.
we can also add descriptions for masks, for example ["*.x*","X files";"*.bin","BIN files"].
a character string which gives the initial directory used for file search. By default uigetfile uses the previously selected directory.
a character string which gives the title of the uigetfile window. By default uigetfile's title is 'uigetfile'.
a boolean which allows to load only one file if it is at '%f' (false) or multiple files if it is at '%t" (true). By default uigetfile's multiple file selection is not enable.
matrix of string which give the user selected file(s) (path + file(s) name(s)) if user answers "Ok" or the " " string if user answers "Cancel".
is the user selected file(s) path if user answers "Ok" or the " " string if user answers "Cancel".
is the user selected filter index on the list box if user answers "Ok" or '0' string if user answers "Cancel"
uigetfile(["*.bin";"*.sce";"*.cos*"]) uigetfile(["*.sci";"*.bin"],"SCI/modules/gui/macros/") uigetfile(["*.sc*";"*.bin"],"SCI/modules/gui/macros/") uigetfile(["*.x*","X files";"*.bin","BIN files"],"SCI/modules/gui/macros/") uigetfile(["*.sce";"*.bin"],"SCI/modules/gui/macros/", "Choose a file name"", %t); uigetfile(["*.sce";"*.bin"],"SCI/modules/gui/macros/", "Choose a file name"", %f);