untgz package:reposTools R Documentation _C_r_e_a_t_e _a _c_o_n_n_e_c_t_i_o_n _t_o _a ._t_a_r._g_z _f_i_l_e _D_e_s_c_r_i_p_t_i_o_n: Return a connection to the contents of filename within the .tar.gz archive given in description. If checkExists, stop if filename isn't in the archive. This requires reading a list of the entire archive contents. The idea is to provide a .tar.gz equivalent to the unz() built-in. _U_s_a_g_e: untgz(description, filename, open = "", checkExists = TRUE) _A_r_g_u_m_e_n_t_s: description: The filename of the .tar.gz filename: The filename of the file in the .tar.gz archive that you want to access. open: The returned connection will have use this value checkExists: If TRUE, then a raise an error if 'filename' is not found in 'description'. Otherwise, you'll just get such a message as the supposed contents of the file. This costs an extra file open and read. _V_a_l_u_e: A connection to the contents of the specified file within the archive. _A_u_t_h_o_r(_s): S. Falcon