Description Usage Arguments Value See Also Examples
Caution: this will permanently delete your files! For a safer, reversible
option, see drive_trash()
.
1 | drive_rm(..., verbose = deprecated())
|
Logical vector, indicating whether the delete succeeded.
Wraps the files.delete
endpoint:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Target one of the official example files to copy (then remove)
(src_file <- drive_example_remote("chicken.txt"))
# Create a copy, then remove it by name
src_file %>%
drive_cp(name = "chicken-rm.txt")
drive_rm("chicken-rm.txt")
# Create several more copies
x1 <- src_file %>%
drive_cp(name = "chicken-abc.txt")
drive_cp(src_file, name = "chicken-def.txt")
x2 <- src_file %>%
drive_cp(name = "chicken-ghi.txt")
# Remove the copies all at once, specified in different ways
drive_rm(x1, "chicken-def.txt", as_id(x2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.