RegistryKeyPath-class {SWinRegistry}R Documentation

Representation of an entry in the registry

Description

This is used to represent the full path to an entry in the Windows registry. It consists of the top-level key in which the entry is resolved, and then a vector giving the names of the sub-keys that identify the path in the hierarchy to the specified key. This forms the basis of most of the functins in this SWinRegistry package.

Objects from the Class

The constructor function is createRegistryPath.

Slots

top:
Object of class "character" the name of the top-level key in the registry in which the path is to be resolved. This comes from .BuiltinKeys.
path:
Object of class "character" giving the names of the subkeys that lead to the specified entry and the entry's name itself.

Methods

coerce
signature(from = "RegistryKeyPath", to = "character"): ...
createRegistryKey
signature(path = "RegistryKeyPath", key = "missing"): ...
createRegistryKey
signature(path = "RegistryKeyPath", key = "character"): ...
deleteRegistryKey
signature(path = "RegistryKeyPath", key = "character"): ...
deleteRegistryKey
signature(path = "RegistryKeyPath", key = "missing"): ...
getRegistryKeyValues
signature(path = "RegistryKeyPath", top = "missing"): ...
getRegistrySubKeyNames
signature(path = "RegistryKeyPath"): ...
resolveKey
signature(path = "RegistryKeyPath"): ...
setRegistryValue
signature(path = "RegistryKeyPath", key = "character"): ...

Author(s)

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

References

http://www.omegahat.org/SWinRegistry

Examples



[Package SWinRegistry version 0.3-3 Index]