appendSepDir            package:tkWidgets            R Documentation

_L_i_s_t _F_i_l_e _a_n_d _D_i_r_e_c_t_o_r_i_e_s _f_o_r _a _G_i_v_e_n _P_a_t_h

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

     Takes a path and returns a vector of string with the names of
     files and directories for the path. The directory names will have
     a system dependent path separator (e. g. / for Unix) appended.

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

     appendSepDir(path)

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

    path: 'path' character string specifying the path whose contents
          are to be listed

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

     A character vector containing file and directory names.

_N_o_t_e:

     This function is part of the Bioconductor project at Dana-Farber
     Cancer Institute to provide Bioinformatics functionalities through
     R.

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

     Jianhua (John) Zhang

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

     'fileBrowser', 'pickFiles'

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

     # File names and directory names are not differentiated
     list.files()

     # Put a separater at the end of directory names
     appendSepDir(getwd())

