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]]]])
:
answers “Cancel”.
:
Creates a dialog window for file(s) selection.
On Windows, java component used by uigetfile browse also .zip archive then it is very slow with big .zip files.
To disable, this feature:
if getos() == ‘Windows’ then unix(“REGSVR32 /u %WINDIR%System32zipfldr.dll”) ;end
To re-enable,
if getos() == ‘Windows’ then unix(“REGSVR32 %WINDIR%System32zipfldr.dll”) ;end
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);