R/path_package.R
path_package.Rdpath_package differs from system.file() in that it always returns an
error if the package does not exist. It also returns a different error if
the file within the package does not exist.
path_package(package, ...)Name of the package to in which to search
Additional paths appended to the package path by path().
path_package() also automatically works with packages loaded with devtools
even if the path_package() call comes from a different package.
path_package("base")
#> /tmp/RtmpgpaYYY/renv-system-library/base
path_package("stats")
#> /tmp/RtmpgpaYYY/renv-system-library/stats
path_package("base", "INDEX")
#> /tmp/RtmpgpaYYY/renv-system-library/base/INDEX
path_package("splines", "help", "AnIndex")
#> /tmp/RtmpgpaYYY/renv-system-library/splines/help/AnIndex