getRegistryKeyValues      package:SWinRegistry      R Documentation

_C_o_n_t_e_n_t_s _o_f _R_e_g_i_s_t_r_y _F_o_l_d_e_r

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

     This retrieves all the key-value pairs in the specified registry
     folder.

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

     getRegistryKeyValues(path = "", top = .BuiltinKeys[1])

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

    path: 

     top: 

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

     A named list containing the key-value pairs of the elements in
     that node of the registry.  The names of the list are the keys. 
     The elements in the list are the corresponding values in the
     registry converted to their S equivalents.  The rule for mapping
     these types to S is:

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

     Duncan Temple Lang <duncan@wald.ucdavis.edu>

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.omegahat.org/SWinRegistry>

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

     'getRegistrySubKeyNames'

     '.resolveToplevelRegistryKey'

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

      getRegistryKeyValues("HKEY_CURRENT_USER\\Environment")
      getRegistryKeyValues(c("HKEY_CURRENT_USER", "Environment"))
      getRegistryKeyValues("Environment", top = "HKEY_CURRENT_USER")
      getRegistryKeyValues("Environment", top = "HKEY_CURRENT_USER")

      names(getRegistryKeyValues("HKEY_CURRENT_USER\\Control Panel\\Colors"))
      names(getRegistryKeyValues(c("HKEY_CURRENT_USER", "Control Panel", "Colors")))
      names(getRegistryKeyValues(c("Control Panel", "Colors"), top = "HKEY_CURRENT_USER"))
      names(getRegistryKeyValues("Control Panel\\Colors", top = "HKEY_CURRENT_USER"))

