this.path aims to provide a mechanism for retrieving the path of an R script within itself without needing to explicitly write its path elsewhere. Additionally, it provides a mechanism for a script to refer to files relative to its directory, independent of working directory.
Install it from CRAN:
Install the development version from GitHub:
The most important functions from this.path are this.path()
, this.dir()
, here()
, and this.proj()
:
this.path()
returns the normalized path of the script in which it is written.
this.dir()
returns the directory of this.path()
.
here()
constructs file paths against this.dir()
.
this.proj()
constructs file paths against the project root of this.dir()
.
this.path also provides functions for constructing and manipulating file paths:
path.join()
, basename2()
, and dirname2()
are drop in replacements for file.path()
, basename()
, and dirname()
which better handle drives and network shares.
splitext()
, removeext()
, ext()
, and ext<-()
split a path into root and extension, remove a file extension, get an extension, or set an extension for a file path.
path.split()
, path.split.1()
, and path.unsplit()
split the path to a file into components.
relpath()
, rel2here()
, and rel2proj()
turn absolute paths into relative paths.
New additions to this.path include:
LINENO()
returns the line number of the executing expression.
wrap.source()
, set.sys.path()
, and unset.sys.path()
implement this.path()
for any source()
-like functions outside of the builtins.
shFILE()
looks through the command line arguments, extracting FILE from either of the following: -f FILE
or --file=FILE
The only equivalent to this.path()
(that I have seen) is whereami::thisfile()
. R package whereami has many issues that this.path resolves:
this.path()
works with sys.source()
, debugSource()
in ‘RStudio’, compiler::loadcmp()
, box::use()
, knitr::knit()
, plumber::plumb()
, shiny::runApp()
, package:targets
, and testthat::source_file()
. It also works in interactive mode inside ‘Rgui’, ‘RStudio’, ‘VSCode’, ‘Jupyter’, and ‘Emacs’.
Related to source()
, this.path()
:
2.1. takes argument chdir
into account.
2.2. recognizes that file = ""
, file = "clipboard"
, and file = "stdin"
are not referring to files and skips them.
2.3. accounts for file
being a URL pathname.
2.4. accounts for file
being a connection instead of a character string.
2.5. skips calls in which file
is missing and exprs
is used instead.
If an R script is being run from a shell, this.path()
does a better job of extracting the command line argument -f FILE
or --file=FILE
.
this.path()
saves all normalized paths within their appropriate environments, making it much faster subsequent times within the same script, and independent of working directory.
If this.path()
does not find an executing script, it throws an error. This is better than whereami::thisfile()
which returns NULL
when it cannot find the executing script. If the executing script cannot be found, obviously there is a problem that needs to be addressed, so the script should not continue.
whereami also has some objectively incorrect coding issues:
It treats R and Rscript as two separate applications to look for command line arguments. At least since R 2.5.0 (>= 15 years ago), Rscript directly calls R, so there should not be separate cases. Additionally, it does NOT take into account the differences between the command line applications on Windows and under Unix-alikes.
It checks for uses of knitr::knit()
after checking the entire call stack for source()
and after checking the command line arguments. This is incorrect, it should be checking for knitr::knit()
at the same time as it checks for source()
.
When whereami is loaded or attached, it changes option keep.source
to TRUE
. A package should never be changing global options without asking / / informing the user beforehand, especially not a CRAN package.
When whereami::thisfile()
is called, it forces knitr to be loaded as well. Again, it is changing the global environment without permission. It should do something like isNamespaceLoaded("knitr")
instead of requireNamespace("knitr")
since, contrary to what the package claims, whereami enhances knitr rather than requires it.
Code aside, whereami suggests that an R script needing to know its own path should only be done if absolutely necessary, and that it should be set outside the context of the R script if possible. I find this vague and unconvincing. Other scripting languages have methods of requesting a script’s path without issue, so R should too. We should not be scaring programmers into thinking that this is rule-breaking or bad practice.
this.path provides a function this.path::here()
. The only equivalent (that I know of) is R package here with its function here::here()
. this.path provides a mechanism for specifying a path relative to the executing script’s directory, while here provides a mechanism for specifying a path relative to the project’s root.
As a long time here user, I appreciate all the functionality and convenience this package offered, but it has some faults that I could not ignore (which this.path fixes). I do not dislike here, it just no longer fits my use-cases.
here::here()
returns the initial working directory when it cannot find the project’s directory. If the project’s directory cannot be found, there is something wrong and an error should be thrown, but it doesn’t, and this leads to incorrect / / unexpected behaviour.
here does not work when the initial working directory is set outside the context of the project. Occasionally, I would set the working directory to a temporary directory where my R script would create a log file of the details of the script. This leads to here not being able to find the project’s directory and incorrectly returning the initial working directory.
here does not work for projects containing sub-projects. In my scenario, I had a project “A”, and later I had a project “B” of which “A” is a sub-project. I would run a script in “B” which runs another script in “A”, but the project root is already set to the root of “B”, so the script in “A” fails.
here does not work when a project is stored on the internet. When I say on the internet, I am not referring to a project stored on a network share, that works correctly. I am talking about projects uploaded to a website. The work I do requires that all source code and input be publicly available through our website, and that the code should run as expected (slow as it may be, and only code that exclusively reads files and / / or produces graphics). Since the project root of here cannot be a URL pathname, I cannot use it.
It should be noted that if you prefer specifying files relative to the project’s directory instead of the executing script’s directory, you could use this.path::this.proj()
instead. It behaves very similarly to here::here()
, but can handle multiple projects in use at once.
There are a few alternatives to this.path()
, though they are limiting.
The working directory could always be changed to the directory of the executing script before running it. This would be
cd /path/to
Rscript ./file.R
or
source("/path/to/file.R", chdir = TRUE)
This works for a lot of use-cases, except for interactive use when moving between files in different directories, nor when an R script is stored on a website. Sometimes it is convenient to have the working directory set elsewhere. This also means that R scripts cannot be made to act like executables. If a script needs to call other scripts in the same directory, it could not do so without the its own path.
utils::getSrcFilename()
Everywhere this.path()
would be used, write utils::getSrcFilename(function() NULL, full.names = TRUE)
instead (yes, it is quite lengthy), and everywhere this.dir()
would be used, write utils::getSrcDirectory(function() NULL)
(again, quite lengthy).
While this will work for R scripts uploaded to a website, this will not work in interactive use since scripts must be run with source()
. Also, it means option keep.source
must be set to TRUE
; this may not be a big deal, but something to be aware of. This means R scripts could not be run from a shell ever again, making it an incredibly inconvenient substitute.
If you think I have overlooked something in whereami or here, or think there are any improvements I could make to this.path, please let me know, I am open to all suggestions! And I hope this package serves you well!