R/utils.R

Defines functions check_convert_name

# Utility function to check if the name is valid and add folder name to it
# @noRd
check_convert_name <- function(folder, name) {
  checkmate::assert_string(name)
  name <- paste(folder, name, sep = "/")
}

Try the connector.sharepoint package in your browser

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

connector.sharepoint documentation built on June 1, 2026, 9:07 a.m.