-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprojr_path_get.Rd
77 lines (71 loc) · 2.04 KB
/
projr_path_get.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dir.R
\name{projr_path_get}
\alias{projr_path_get}
\title{Return path}
\usage{
projr_path_get(
label,
...,
create = TRUE,
relative = FALSE,
absolute = FALSE,
safe = TRUE
)
}
\arguments{
\item{label}{character.
One of \code{"raw_data"}, \code{"cache"},\code{"output"},
\code{"archive"} and \code{"docs"}.
Class of directory to return.
The \code{"docs"} option returns the path to
the output directory from \code{bookdown::render_book}
(as specified in \code{"_bookdown.yml"}),
whereas the others returns paths as specified in \code{"_projr.yml"}.}
\item{...}{Specifies sub-path of directory returned.}
\item{create}{logical.
If \code{TRUE}, then the parent directory
is created if it does not exist and
it is ignored (or not) from \code{.gitignore}
and \code{.Rbuildignore} as specified
in \code{_projr.yml}.
Default is \code{TRUE}.}
\item{relative}{logical.
If \code{TRUE}, then forces that the returned
path is relative to the project root.
Default is \code{FALSE}.}
\item{absolute}{logical.
If \code{TRUE}, then forces the returned path
to be absolute.
Default is \code{FALSE}.}
\item{safe}{logical.
If \code{TRUE}, then the output directory
is set to be \code{"<path_to_cache>.output"}
instead of \code{<path_to_output>} (as specified in \code{_projr.yml}).
The only time that this should be set to \code{TRUE}
should be when .build_output\verb{ is being run, as otherwise "development" or test runs will add to, delete or overwrite fabciles from the previous run of .build_output}.
Default is \code{TRUE}.
Do not change this unless you know what you are doing.}
}
\value{
Character.
Path to directory requested.
}
\description{
Returns path to \code{projr} profile-specific directory.
Differs from \code{projr_dir_get} in that it does not assume
that the path is to a directory.
Will create the parent directory of the specified
path if it does not exist, and ignore it
if requested by \verb{_projr.yml}.
}
\details{
DETAILS
}
\examples{
\dontrun{
if (interactive()) {
# EXAMPLE1
}
}
}