fullfile               package:matlab               R Documentation

_M_A_T_L_A_B _f_u_l_l_f_i_l_e _f_u_n_c_t_i_o_n

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

     Contructs path to a file from components in platform-independent
     manner

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

     fullfile(...)

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

     ...: character strings representing path components

_D_e_t_a_i_l_s:

     Builds a full filename from the directories and filename
     specified. This is conceptually equivalent to  

         paste(dir1, dir2, dir3, filename, sep = filesep)

     with care taken to handle cases when directories begin or end with
     a separator.

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

     Returns character vector of arguments concatenated term-by-term
     and separated by file separator if all arguments have a positive
     length; otherwise, an empty character vector.

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

     P. Roebuck, roebuck@mdanderson.org

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

     'fileparts'

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

     fullfile("", "etc", "profile")  # /etc/profile

