将本机 Google 文件发布(或取消发布)到网络上。原生 Google 文件包括 Google 文档、Google 表格和 Google 幻灯片。返回的 dribble
将具有额外的列 published
和 revisions_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 = TRUE
和publishedOutsideDomain = TRUE
。 - verbose
-
这种对各个 googledrive 函数的逻辑论证已被弃用。要全局禁止 googledrive 消息传递,请使用
options(googledrive_quiet = TRUE)
(默认行为是发出信息性消息)。要以更有限的方式抑制消息传递,请使用帮助程序local_drive_quiet()
或者with_drive_quiet()
.
值
dribble
类的对象,每个文件一行的 tibble。将有额外的列 published
和 revisions_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 googledrive drive_put 将新媒体放入云端硬盘文件中
- R googledrive drive_cp 复制云端硬盘文件
- R googledrive drive_mime_type 查找 MIME 类型
- R googledrive drive_reveal 添加新的云端硬盘文件信息列
- R googledrive drive_rm 从云端硬盘删除文件
- R googledrive drive_id 驱动器 ID 类
- R googledrive drive_auth_configure 编辑和查看身份验证配置
- R googledrive drive_upload 上传到新的云端硬盘文件
- R googledrive drive_mv 移动云端硬盘文件
- R googledrive drive_has_token 手上有令牌吗?
- R googledrive drive_user 获取当前用户的信息
- R googledrive drive_rename 重命名云端硬盘文件
- R googledrive drive_trash 将云端硬盘文件移入或移出回收站
- R googledrive drive_share 共享云端硬盘文件
- R googledrive drive_about 获取有关云端硬盘函数的信息
- R googledrive drive_update 更新现有云端硬盘文件
- R googledrive drive_mkdir 创建云端硬盘文件夹
- R googledrive drive_fields 请求部分资源
- R googledrive drive_endpoints 列出驱动器端点
- R googledrive drive_deauth 暂停授权
- R googledrive drive_link 检索云端硬盘文件链接
- R googledrive drive_find 在 Google 云端硬盘上查找文件
- R googledrive drive_create 创建一个新的空白云端硬盘文件
- R googledrive drive_examples 示例文件
- R googledrive drive_browse 在浏览器中访问云端硬盘文件
注:本文由纯净天空筛选整理自Jennifer Bryan等大神的英文原创作品 Publish native Google files。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。