guiDlgOpen             package:svDialogs             R Documentation

_A_n _o_p_e_n _f_i_l_e(_s) _d_i_a_l_o_g _b_o_x

_D_e_s_c_r_i_p_t_i_o_n:

     Allows to select one or more existing files to be opened

_U_s_a_g_e:

     guiDlgOpen(title = "Select file", defaultFile = "", defaultDir = "", multi = FALSE, filters = c("All files (*.*)", "*.*"), parent = 0, GUI = getOption("GUIwidgets"))

_A_r_g_u_m_e_n_t_s:

   title: the title of the dialog box 

defaultFile: the file name to display by default 

defaultDir: the default dir where to open the dialog box 

   multi: is it allowed to select several files at once? 

 filters: the filters to use. It is a n*2 matrix of characters, with
          first column being the label and the second being the mask.
          For instance: "Text files", "*.txt". 

  parent: the parent of this dialog box (not implemented yet) 

     GUI: which GUI widgets do you want to use (tcltk, wxPython, ...) 

_V_a_l_u_e:

     A list with the path to the selected files.

_A_u_t_h_o_r(_s):

     Philippe Grosjean (phgrosjean@sciviews.org)

_S_e_e _A_l_s_o:

     'guiDlgSave', 'guiDlgDir'

_E_x_a_m_p_l_e_s:

         #### TO DO...

