List files and folders within a specified DoH Data Drop Google Drive folder

datadrop_ls(id)

Arguments

id

A 33 character string for the Google Drive ID of the latest officially released DoH Data Drop. This can be obtained using the datadrop_id_latest() function or by manually expanding the shortened URL provided in bit.ly/DataDropPH and extracting the Google Drive ID.

Value

A tibble containing information on the various files and folders in the specified Google Drive for DoH Data Drop.

Author

Ernest Guevarra

Examples

if (FALSE) { library(googledrive) ## Authentication googledrive::drive_auth_configure(api_key = Sys.getenv("GOOGLEDRIVE_TOKEN")) ## Deauthorise googledrive::drive_deauth() ## Get Google Drive ID of latest DoH Data Drop id <- datadrop_id_latest() ## List the contents of the latest DoH Data Drop in Google Drive datadrop_ls(id = id) }