R/fileaccess-package.R

#' fileaccess: File and Directory Access Validation
#'
#' Provides utility functions to validate read, write, execute,
#' network, directory, and file access for local and UNC network paths.
#' Useful for pre-flight checks before file operations in data pipelines.
#'
#' @section Main functions:
#' \itemize{
#'   \item \code{\link{read.access}}      - Check if a path is readable
#'   \item \code{\link{write.access}}     - Check if a path is writable
#'   \item \code{\link{execute.access}}   - Check if a file/command is executable
#'   \item \code{\link{network.access}}   - Check if a UNC network path is accessible
#'   \item \code{\link{directory.access}} - Check directory existence and permissions
#'   \item \code{\link{file.access}}      - Check file existence, permissions and metadata
#' }
#'
#' @docType package
#' @name fileaccess
#' @aliases fileaccess-package
"_PACKAGE"

Try the fileaccess package in your browser

Any scripts or data that you put into this service are public.

fileaccess documentation built on June 18, 2026, 1:06 a.m.