`temp_folder` created a temporary folder in your AppData directory, which will be automatically removed after you close your RStudio session.
temp_folder(launch = FALSE, quiet = FALSE)
creates a temp directory and stores it as `folderpath_tmp`
if (FALSE) { # \dontrun{
load_secrets()
temp_folder(launch = TRUE)
purrr::walk2(.x = df_googlefiles$id,
.y = df_googlefiles$filename,
.f = ~googledrive::drive_download(googledrive::as_id(.x),
file.path(folderpath_tmp, .y))) } # }