shared_drive_rm {googledrive} | R Documentation |
A shared drive supports files owned by an organization rather than an individual user. Shared drives follow different sharing and ownership models from a specific user's "My Drive". Shared drives are the successors to the earlier concept of Team Drives. Learn more about shared drives.
shared_drive_rm(drive = NULL)
drive |
Anything that identifies the shared drive(s) of interest. Can
be a character vector of names, a character vector of file ids or URLs
marked with |
Logical vector, indicating whether the delete succeeded.
Wraps the drives.delete
endpoint:
## Not run: # Create shared drives to remove in various ways shared_drive_create("testdrive-01") sd02 <- shared_drive_create("testdrive-02") shared_drive_create("testdrive-03") sd04 <- shared_drive_create("testdrive-04") # remove by name shared_drive_rm("testdrive-01") # remove by id shared_drive_rm(as_id(sd02)) # remove by URL (or, rather, id found in URL) shared_drive_rm(as_id("https://drive.google.com/drive/u/0/folders/Q5DqUk9PVA")) # remove by dribble shared_drive_rm(sd04) ## End(Not run)