drive_put | R Documentation |
PUTs new media into a Drive file, in the HTTP sense:
If the file already exists, we replace its content.
If the file does not already exist, we create a new file.
This is a convenience wrapper around drive_upload()
and
drive_update()
. In pseudo-code:
target_filepath <- <determined from `path`, `name`, and `media`> hits <- <get all Drive files at target_filepath> if (no hits) { drive_upload(media, path, name, type, ...) } else if (exactly 1 hit) { drive_update(hit, media, ...) } else { ERROR }
drive_put(
media,
path = NULL,
name = NULL,
...,
type = NULL,
verbose = deprecated()
)
An object of class dribble
, a tibble with one row per file.
# create a local file to work with
local_file <- tempfile("drive_put_", fileext = ".txt")
writeLines(c("beginning", "middle"), local_file)
# PUT to a novel filepath --> drive_put() delegates to drive_upload()
file <- drive_put(local_file)
# update the local file
cat("end", file = local_file, sep = "\n", append = TRUE)
# PUT again --> drive_put() delegates to drive_update()
file <- drive_put(local_file)
# create a second file at this filepath
file2 <- drive_create(basename(local_file))
# PUT again --> ERROR
drive_put(local_file)
# Clean up
drive_find("drive_put_.+[.]txt") %>% drive_rm()
unlink(local_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.