当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R googledrive drive_publish 发布原生 Google 文件


将本机 Google 文件发布(或取消发布)到网络上。原生 Google 文件包括 Google 文档、Google 表格和 Google 幻灯片。返回的 dribble 将具有额外的列 publishedrevisions_resource 。阅读drive_reveal() 了解更多内容。

用法

drive_publish(file, ..., verbose = deprecated())

drive_unpublish(file, ..., verbose = deprecated())

参数

file

识别您的 Google 云端硬盘上感兴趣的文件的内容。可以是名称/路径的字符向量、标有 as_id() 的文件 id 或 URL 的字符向量或 dribble

...

Name-value 对添加到 API 请求正文(有关详细信息,请参阅下面链接的 API 文档)。对于 drive_publish() ,如果用户未指定其他值,我们包括 publishAuto = TRUEpublishedOutsideDomain = TRUE

verbose

[Deprecated]这种对各个 googledrive 函数的逻辑论证已被弃用。要全局禁止 googledrive 消息传递,请使用options(googledrive_quiet = TRUE)(默认行为是发出信息性消息)。要以更有限的方式抑制消息传递,请使用帮助程序local_drive_quiet()或者with_drive_quiet().

dribble 类的对象,每个文件一行的 tibble。将有额外的列 publishedrevisions_resource

也可以看看

例子

# Create a file to publish
file <- drive_example_remote("chicken_sheet") %>%
  drive_cp()
#> Original file:
#> • chicken_sheet <id: 1SeFXkr3XdzPSuWauzPdN-XnaryOYmZ7sFiUF5t-wSVU>
#> Copied to file:
#> • Copy of chicken_sheet
#>   <id: 1k0u0hGcU6KD3q4MJSdSaTy-RLC6_mxbn4wsPNfn6MoY>

# Publish file
file <- drive_publish(file)
#> File now published:
#> • Copy of chicken_sheet
#>   <id: 1k0u0hGcU6KD3q4MJSdSaTy-RLC6_mxbn4wsPNfn6MoY>
file$published
#> [1] TRUE

# Unpublish file
file <- drive_unpublish(file)
#> File now NOT published:
#> • Copy of chicken_sheet
#>   <id: 1k0u0hGcU6KD3q4MJSdSaTy-RLC6_mxbn4wsPNfn6MoY>
file$published
#> [1] FALSE

# Clean up
drive_rm(file)
#> File deleted:
#> • Copy of chicken_sheet
#>   <id: 1k0u0hGcU6KD3q4MJSdSaTy-RLC6_mxbn4wsPNfn6MoY>
源代码:R/drive_publish.R

相关用法


注:本文由纯净天空筛选整理自Jennifer Bryan等大神的英文原创作品 Publish native Google files。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。