如何指定带有 googledrive R 包的文件夹?

How to specify a folder whith googledrive R package?

我需要用他的 google ID 列出许多图像文件,我在 R 中找到 google 驱动程序包和执行此操作的下一个函数,但它会显示一条错误消息(我想是因为a 在许多文件夹中有超过 30.000 个“jpeg”文件:

library(googledrive)

photos <- drive_find(type = "jpeg")

我可以指定文件夹到 运行 drive_find() 函数吗?;我一直在寻找,但没有找到解决方案。

非常感谢。

最后,下一个代码是我的解决方案:

library(googledrive)

Fotos <- drive_ls(as_id("here the ID of the specific Folder"))

这些代码下载一个 drible,其中包含这些文件夹中的文件和他的 ID。