ID EN
Environment & Scope

getLoadedDLLs

R Base 3.6.2

This function provides a way to get a list of all the DLLs (see dyn.load) that are currently loaded in the R session.

Syntax

R
getLoadedDLLs()

Return Value

An object of class "DLLInfoList" which is a list with an element corresponding to each DLL that is currently loaded in the session. Each element is an object of class "DLLInfo" which has the following entries. namethe abbreviated name. paththe fully qualified name of the loaded DLL. dynamicLookupa logical value indicating whether R uses only the registration information to resolve symbols or whether it searches the entire symbol table of the DLL. handlea reference to the C-level data structure t

Details

This queries the internal table that manages the DLLs.

Examples

Example
R
# NOT RUN {
getLoadedDLLs()

utils::tail(getLoadedDLLs(), 2) # the last 2 loaded ones, still a DLLInfoList
# }

See Also

getDLLRegisteredRoutines getNativeSymbolInfo