`import_drivefile` is a wrapper around `googledrive::drive_download`, useful for pulling multiple files from a given Google Drive folder (with a Google ID provided) to download by default to the Data folder of a project.
import_drivefile(drive_folder, filename, folderpath = "Data", zip = TRUE)
stores file from Google Drive as a zipped file
if (FALSE) { # \dontrun{
library(googledrive)
googledrive::drive_auth()
fldr <- "Spp-y8DYsdRTrzDqUmK4fX5v"
import_drivefile(fldr, "TestFile.csv")
} # }