Skip to contents

Tries to find the installation path for a specific version of PK-Sim. Searching is done in the following order:

  1. Search via Windows registry entry

  2. Search via file system in a guessed installation folder from the base.search.folder (fallback 1)

Usage

.getPathToPKSimInstallDir(
  pksim.version = ospsuiteEnv$suiteVersion,
  base.search.folder = Sys.getenv("ProgramW6432")
)

Arguments

pksim.version

The version number of Pk-Sim as a string.

base.search.folder

The base folder for file system lookup fallback (default: 64-bit program folder)

Value

The path to the PK-Sim installation for version pksim.version or NA if no path could be found. The path is separated with slashes (unix-style) and in compliance with base-R without a trailing slash. If more than one matching path is found a warning is produced.

Examples

if (FALSE) {
path <- .getPathToPKSimInstallDir("9")
path2 <- .getPathToPKSimInstallDir("10.1", "C:/MyOSPFolder/")
}
#' @keywords internal