R/startup_session_options.R
startup_session_options.Rd
Record R session information as options
startup_session_options(action = c("update", "overwrite", "erase"))
Returns invisibly a named list of the options prefixed
"startup.session."
:
startup.session.startdir
(character) the working directory when
the startup was first loaded. If startup::startup()
is called
at the very beginning of the .Rprofile
file, this is also the
directory that the current R session was launched from.
startup.session.starttime
(POSIXct) the time when the startup was first loaded.
startup.session.id
(character) a unique ID for the current R session.
startup.session.dumpto
(character) a session-specific name that
can be used for argument dumpto
of dump.frames()
(also for dumping to file).
opts <- startup::startup_session_options()
opts
#> $startup.session.startdir
#> [1] "/tmp/henrik/RtmpgyD0pC/startup"
#>
#> $startup.session.starttime
#> [1] "2024-08-08 19:28:39 CEST"
#>
#> $startup.session.starttime_iso
#> [1] "20240808-192839"
#>
#> $startup.session.id
#> [1] "RtmpxwgfZq"
#>
#> $startup.session.dumpto
#> [1] "/tmp/henrik/RtmpgyD0pC/startup/last.dump_20240808-192839_RtmpxwgfZq"
#>