Gets file ids from various inputs and marks them as such, to distinguish them from file names or paths.
This is a generic function.
as_id(x, ...)
| x | A character vector of file or Team Drive ids or URLs, a |
|---|---|
| ... | Other arguments passed down to methods. (Not used.) |
A character vector bearing the S3 class drive_id.
as_id("123abc")#> [1] "123abc" #> attr(,"class") #> [1] "drive_id"as_id("https://docs.google.com/spreadsheets/d/qawsedrf16273849/edit#gid=12345")#> [1] "qawsedrf16273849" #> attr(,"class") #> [1] "drive_id"# NOT RUN { x <- drive_find(n_max = 3) as_id(x) x <- drive_get("foofy") as_id(x) x <- team_drive_find("work-stuff") as_id(x) # }