View source: R/shared_drive_get.R
shared_drive_get | R Documentation |
Retrieve metadata for shared drives specified by name or id. Note that Google Drive does NOT behave like your local file system:
You can get zero, one, or more shared drives back for each name! Shared drive names need not be unique.
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_get(name = NULL, id = NULL)
name |
Character vector of names. A character vector marked with
|
id |
Character vector of shared drive ids or URLs (it is first processed
with |
An object of class dribble
, a tibble with one row per shared drive.
## Not run:
shared_drive_get("my-awesome-shared-drive")
shared_drive_get(c("apple", "orange", "banana"))
shared_drive_get(as_id("KCmiHLXUk9PVA-0AJNG"))
shared_drive_get(as_id("https://drive.google.com/drive/u/0/folders/KCmiHLXUk9PVA-0AJNG"))
shared_drive_get(id = "KCmiHLXUk9PVA-0AJNG")
shared_drive_get(id = "https://drive.google.com/drive/u/0/folders/KCmiHLXUk9PVA-0AJNG")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.