R/create_sd.R

Defines functions create_sd

Documented in create_sd

################################################################################
#
#' Function to create an ODK Briefcase Storage directory
#'
#' @param path Directory path on which to create the ODK Briefcase Storage
#'
#' @return ODK Briefcase Storage directory in the specified path
#'
#' @examples
#' create_sd(path = tempdir())
#'
#' @export
#'
#'
#
################################################################################

create_sd <- function(path) {
  dir.create(path = paste(path, "ODK Briefcase Storage", sep = "/"))
  dir.create(path = paste(path, "ODK Briefcase Storage", "forms", sep = "/"))
}
validmeasures/odkr documentation built on Oct. 16, 2024, 3:55 p.m.