GoogleDrive软件包错误-无法识别的Google MIME类型:* application / vnd.google-apps.folder

时间:2019-03-01 15:38:15

标签: r google-api

我在R中使用googledrive软件包。

我能够下载我的所有文件,但是在下载结束时显示错误。

googledrive::drive_deauth(clear_cache = TRUE, verbose = TRUE)
googledrive::drive_auth()

##Creates a dataframe of all files found in google drive
list_from_google_drive<-drive_ls()
gdrive_df<-data.frame(list_from_google_drive)

for (i in 1:length(gdrive_df$name)){
  name_datorama = gdrive_df$name[i]
  drive_download(name_datorama, overwrite = TRUE)
} 

File downloaded:
  * file_ETL_Last_Seven_Days_2019-02-15_2019-02-21.xlsx
Saved locally as:
  * file_ETL_Last_Seven_Days_2019-02-15_2019-02-21.xlsx
Error: Not a recognized Google MIME type:
  * application/vnd.google-apps.folder

我的文件仍在处理中,但尚未看到与此错误有关的任何问题,但是没有人知道这可能意味着什么,以及如何避免此烦恼吗?

0 个答案:

没有答案