syncLocalLibList package:reposTools R Documentation _A _f_u_n_c_t_i_o_n _t_o _s_y_n_c_h _t_h_e _l_o_c_a_l _l_i_b_r_a_r_y _f_i_l_e _D_e_s_c_r_i_p_t_i_o_n: Will look for a file liblisting.Rda in specified R library directory, and synch any information that is not in the current liblisting into that file. If no such file exists, will create one. _U_s_a_g_e: syncLocalLibList(lib = reposToolsLibPaths(), quiet=TRUE) _A_r_g_u_m_e_n_t_s: lib: A vector of library directories to synch. Default is reposToolsLibPaths() quiet: A verbosity argument. More output is provided when 'FALSE' _D_e_t_a_i_l_s: If there is not currently a liblisting.Rda file in the specified lib(s), one will be created. Any new information (new packages, updated versions, etc) will be reflected into the liblisting.Rda file. If multiple libs are specified, this procedure will be repeated across all libs. The liblisting.Rda file contains an object named 'locLibList'. This object is a list of 'localPkg' objects. Each object in the list represents one installed package in that library directory. _A_u_t_h_o_r(_s): Jeff Gentry _S_e_e _A_l_s_o: 'install.packages2', 'update.packages2', 'remove.packages2', 'reposToolsLibPaths' _E_x_a_m_p_l_e_s: ## make a temporary directory for use in this example a <- tempfile() dir.create(a) syncLocalLibList(a) unlink(a,recursive=TRUE)