`r lifecycle::badge("experimental")`
`export_drivefile() is designed to move files googledrive`
export_drivefile(
filename,
to_drive,
to_folder = NULL,
add_folder = TRUE,
overwrite = TRUE,
...
)
Character, Full name of the file to be uploaded
Character, Google drive id
Character, Google drive sub-folder
Logical. If TRUE, add sub-folders if they are not present
Logical. If yes, existing files will be overwritten
Additional parameters to be passed to `googledrive::drive_upload()`
Googledrive file(s) id(s)
if (FALSE) { # \dontrun{
library(glamr)
list.files("./Graphics", "NIGERIA", full.names = TRUE) %>%
export_drivefile(filename = .,
to_drive = "<path-id>",
to_folder = "FY99Q4/VL Suppression",
add_folder = TRUE)
} # }