The functions or variables listed here are no longer part of this.path as they are no longer needed.
# Defunct in 1.1.0
this.path2(...)
this.dir2(...)
this.dir3(...)
normalized.shFILE(default, else.)# Defunct in 1.3.0
as.rel.path(path)
as.relative.path(path)
# Defunct in 1.4.0
local.path(verbose = getOption("verbose"), original = FALSE,
for.msg = FALSE, contents = FALSE, default, else.)
Sys.path()
Sys.dir()
this.path2(), this.dir2(), and this.dir3() were used
before this.path() and this.dir() were given an
argument default. Should be replaced by
this.path(default = NULL),
this.dir(default = NULL), and
this.dir(default = getwd())
, respectively.
normalized.shFILE() was used before shFILE() was given
an argument original. Should be replaced by shFILE().
as.rel.path() and as.relative.path() were poorly chosen names
given their functionality. Should be replaced by rel2here().
local.path() was used when it called a different C function than
this.path(). Should be replaced by
this.path(local = TRUE).
Sys.path() and Sys.dir() were just plain stupid. Should be
replaced by this.path() and this.dir().