Check file system access rights
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 |
[character(1)] |
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
returns 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")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.