checkAccess | R Documentation |
Check file system access rights
checkAccess(x, access = "")
check_access(x, access = "")
assertAccess(x, access = "", .var.name = vname(x), add = NULL)
assert_access(x, access = "", .var.name = vname(x), add = NULL)
testAccess(x, access = "")
test_access(x, access = "")
expect_access(x, access = "", info = NULL, label = vname(x))
x |
[any] |
access |
[ |
.var.name |
[ |
add |
[ |
info |
[ |
label |
[ |
Depending on the function prefix:
If the check is successful, the functions
assertAccess
/assert_access
return
x
invisibly, whereas
checkAccess
/check_access
and
testAccess
/test_access
return
TRUE
.
If the check is not successful,
assertAccess
/assert_access
throws an error message,
testAccess
/test_access
returns FALSE
,
and checkAccess
/check_access
return a string with the error message.
The function expect_access
always returns an
expectation
.
Other filesystem:
checkDirectoryExists()
,
checkFileExists()
,
checkPathForOutput()
# Is R's home directory readable?
testAccess(R.home(), "r")
# Is R's home directory writeable?
testAccess(R.home(), "w")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.