注意:这将永久删除您的文件!如需更安全、可逆的选项,请参阅drive_trash()
。
参数
- ...
-
以任何有效方式指定的一个或多个云端硬盘文件,即通过名称或路径、或者通过标有
as_id()
的文件 ID 或 URL 指定为dribble
。或其任意组合。元素在删除之前使用as_dribble()
和row-bound 进行处理。 - verbose
-
这种对各个 googledrive 函数的逻辑论证已被弃用。要全局禁止 googledrive 消息传递,请使用
options(googledrive_quiet = TRUE)
(默认行为是发出信息性消息)。要以更有限的方式抑制消息传递,请使用帮助程序local_drive_quiet()
或者with_drive_quiet()
.
例子
# Target one of the official example files to copy (then remove)
(src_file <- drive_example_remote("chicken.txt"))
#> # A dribble: 1 × 3
#> name id drive_resource
#> <chr> <drv_id> <list>
#> 1 chicken.txt 1wOLeWVRkTb6lDmLRiOhg9iKM7DlN762Y <named list [38]>
# Create a copy, then remove it by name
src_file %>%
drive_cp(name = "chicken-rm.txt")
#> Original file:
#> • chicken.txt <id: 1wOLeWVRkTb6lDmLRiOhg9iKM7DlN762Y>
#> Copied to file:
#> • chicken-rm.txt <id: 1F2_NR-3oYprCrinOX7ktGGhrGDVL691L>
drive_rm("chicken-rm.txt")
#> File deleted:
#> • chicken-rm.txt <id: 1F2_NR-3oYprCrinOX7ktGGhrGDVL691L>
# Create several more copies
x1 <- src_file %>%
drive_cp(name = "chicken-abc.txt")
#> Original file:
#> • chicken.txt <id: 1wOLeWVRkTb6lDmLRiOhg9iKM7DlN762Y>
#> Copied to file:
#> • chicken-abc.txt <id: 1WsAeToXFGijEStXd03F4Pyb6TEeF3e0u>
drive_cp(src_file, name = "chicken-def.txt")
#> Original file:
#> • chicken.txt <id: 1wOLeWVRkTb6lDmLRiOhg9iKM7DlN762Y>
#> Copied to file:
#> • chicken-def.txt <id: 1YWeFvk8pOZG2QKqgAEWuiJDJ_mpao7nu>
x2 <- src_file %>%
drive_cp(name = "chicken-ghi.txt")
#> Original file:
#> • chicken.txt <id: 1wOLeWVRkTb6lDmLRiOhg9iKM7DlN762Y>
#> Copied to file:
#> • chicken-ghi.txt <id: 1zyBhXeOSYDiXaPsLyzFx2io7dbT0xvnD>
# Remove the copies all at once, specified in different ways
drive_rm(x1, "chicken-def.txt", as_id(x2))
#> Files deleted:
#> • chicken-abc.txt <id: 1WsAeToXFGijEStXd03F4Pyb6TEeF3e0u>
#> • chicken-def.txt <id: 1YWeFvk8pOZG2QKqgAEWuiJDJ_mpao7nu>
#> • chicken-ghi.txt <id: 1zyBhXeOSYDiXaPsLyzFx2io7dbT0xvnD>
相关用法
- R googledrive drive_reveal 添加新的云端硬盘文件信息列
- R googledrive drive_rename 重命名云端硬盘文件
- R googledrive drive_read_string 读取云端硬盘文件的内容
- R googledrive drive_cp 复制云端硬盘文件
- R googledrive drive_mime_type 查找 MIME 类型
- R googledrive drive_id 驱动器 ID 类
- R googledrive drive_auth_configure 编辑和查看身份验证配置
- R googledrive drive_upload 上传到新的云端硬盘文件
- R googledrive drive_mv 移动云端硬盘文件
- R googledrive drive_put 将新媒体放入云端硬盘文件中
- R googledrive drive_has_token 手上有令牌吗?
- R googledrive drive_user 获取当前用户的信息
- 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等大神的英文原创作品 Delete files from Drive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。