當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R googledrive drive_mkdir 創建雲端硬盤文件夾


創建一個新的雲端硬盤文件夾。要更新現有雲端硬盤文件(包括文件夾)的元數據,請使用 drive_update()

用法

drive_mkdir(name, path = NULL, ..., overwrite = NA, verbose = deprecated())

參數

name

新文件夾的名稱,或者(可選)指定現有父文件夾的路徑以及新名稱。

path

新文件夾的目標目的地,即文件夾或共享驅動器。可以作為實際路徑(字符)、標有 as_id()dribble 的文件 ID 或 URL 給出。默認為您的 "My Drive" 根文件夾。如果path 是文件夾的快捷方式,它會自動解析為其目標文件夾。

...

要傳遞到 Drive API 的命名參數。具有dynamic dots 語義。您可以通過 ... 指定文件資源的屬性來影響目標文件的元數據。閱讀關聯端點的 Drive API 文檔的"Request body" 部分,了解相關參數。

overwrite

邏輯,指示是否檢查目標"filepath"處是否存在預先存在的文件。 "filepath" 周圍的引號是指 Drive 不會像典型的文件係統那樣在文件路徑和文件之間強加一對一的關係;在 drive_get() 中了解更多相關信息。

  • NA(默認):隻需執行該操作,即使它會導致多個文件具有相同的文件路徑。

  • TRUE :檢查文件路徑中是否存在預先存在的文件。如果有零個或一個,請將預先存在的文件移至箱子,然後繼續。請注意,新文件不會繼承舊文件的任何屬性,例如共享或發布設置。它將有一個新的文件 ID。如果找到兩個或多個預先存在的文件,則會引發錯誤。

  • FALSE:如果文件路徑中存在任何預先存在的文件,則會出錯。

請注意,基於文件路徑的存在性檢查是昂貴的操作,即它們需要額外的 API 調用。

verbose

[Deprecated]這種對各個 googledrive 函數的邏輯論證已被棄用。要全局禁止 googledrive 消息傳遞,請使用options(googledrive_quiet = TRUE)(默認行為是發出信息性消息)。要以更有限的方式抑製消息傳遞,請使用幫助程序local_drive_quiet()或者with_drive_quiet().

dribble 類的對象,每個文件一行的 tibble。

也可以看看

例子

# Create folder named 'ghi', then another below named it 'jkl' and star it
ghi <- drive_mkdir("ghi")
#> Created Drive file:
#> • ghi <id: 1oKFLaZIh9VEsTUyzZwfpnzfdbs9ivVcP>
#> With MIME type:
#> • application/vnd.google-apps.folder
jkl <- drive_mkdir("ghi/jkl", starred = TRUE)
#> Created Drive file:
#> • jkl <id: 1ap1w-CyQKFo2uXyzHP_vjO3_S_wlpAFy>
#> With MIME type:
#> • application/vnd.google-apps.folder

# is 'jkl' really starred? YES
purrr::pluck(jkl, "drive_resource", 1, "starred")
#> [1] TRUE

# Another way to create folder 'mno' in folder 'ghi'
drive_mkdir("mno", path = "ghi")
#> Created Drive file:
#> • mno <id: 1I6Y45sl3oZNUGth3FtJNeSG1gr6N8CkF>
#> With MIME type:
#> • application/vnd.google-apps.folder

# Yet another way to create a folder named 'pqr' in folder 'ghi',
# this time with parent folder stored in a dribble,
# and setting the new folder's description
pqr <- drive_mkdir("pqr", path = ghi, description = "I am a folder")
#> Created Drive file:
#> • pqr <id: 1XY4ADte-K9DqzIWWHsPcMDP7aj4Lj3-D>
#> With MIME type:
#> • application/vnd.google-apps.folder

# Did we really set the description? YES
purrr::pluck(pqr, "drive_resource", 1, "description")
#> [1] "I am a folder"

# `overwrite = FALSE` errors if something already exists at target filepath
# THIS WILL ERROR!
drive_create("name-squatter-mkdir", path = ghi)
#> Created Drive file:
#> • name-squatter-mkdir <id: 1DEr4p-zFATFcWhx1c30mOAw9rSOjISvV>
#> With MIME type:
#> • application/octet-stream
drive_mkdir("name-squatter-mkdir", path = ghi, overwrite = FALSE)
#> Error in check_for_overwrite(params[["parents"]], params[["name"]], overwrite): 1 item already exists at the target filepath and `overwrite =
#> FALSE`:
#> • name-squatter-mkdir <id: 1DEr4p-zFATFcWhx1c30mOAw9rSOjISvV>

# `overwrite = TRUE` moves the existing item to trash, then proceeds
drive_mkdir("name-squatter-mkdir", path = ghi, overwrite = TRUE)
#> File trashed:
#> • name-squatter-mkdir <id: 1DEr4p-zFATFcWhx1c30mOAw9rSOjISvV>
#> Created Drive file:
#> • name-squatter-mkdir <id: 1a9KDiGfd_CuEcK2HzuLmZoO0jzTkFipS>
#> With MIME type:
#> • application/vnd.google-apps.folder

# list everything inside 'ghi'
drive_ls("ghi")
#> # A dribble: 4 × 3
#>   name                id                                drive_resource   
#>   <chr>               <drv_id>                          <list>           
#> 1 name-squatter-mkdir 1a9KDiGfd_CuEcK2HzuLmZoO0jzTkFipS <named list [33]>
#> 2 pqr                 1XY4ADte-K9DqzIWWHsPcMDP7aj4Lj3-D <named list [34]>
#> 3 mno                 1I6Y45sl3oZNUGth3FtJNeSG1gr6N8CkF <named list [33]>
#> 4 jkl                 1ap1w-CyQKFo2uXyzHP_vjO3_S_wlpAFy <named list [33]>

# Clean up
drive_rm(ghi)
#> File deleted:
#> • ghi <id: 1oKFLaZIh9VEsTUyzZwfpnzfdbs9ivVcP>
源代碼:R/drive_mkdir.R

相關用法


注:本文由純淨天空篩選整理自Jennifer Bryan等大神的英文原創作品 Create a Drive folder。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。