Skip to contents

Move a file from one location to another within the RAP project server.

Usage

rap_move_file(path, output_dir)

Arguments

path

The file path you want to move.

output_dir

The folder (directory) you want to move the file to.

Value

The status results of the move command.

Examples

if (FALSE) { # \dontrun{
rap_get_path_files(".") |>
  stringr::str_subset("lwjohnst-.*\\.csv$") |>
  rap_move_file(
    rap_get_path_users() |>
      stringr::str_subset("lwjohnst")
  )
} # }