getExt package:reposTools R Documentation _G_e_t _f_i_l_e _e_x_t_e_n_s_i_o_n _h_e_l_p_e_r _f_u_n_c_t_i_o_n _D_e_s_c_r_i_p_t_i_o_n: Return the file extension. _U_s_a_g_e: getExt(path) _A_r_g_u_m_e_n_t_s: path: What to get the extension of _V_a_l_u_e: character. The extension. _A_u_t_h_o_r(_s): S. Falcon _E_x_a_m_p_l_e_s: ##---- Should be DIRECTLY executable !! ---- ##-- ==> Define data, use random, ##-- or do help(data=index) for the standard data sets. ## The function is currently defined as function (path) { parts <- strsplit(path, "\.")[[1]] last <- parts[length(parts)] last }