How can we list all files from a specific folder on Google Drive

前端 未结 4 1262
灰色年华
灰色年华 2021-01-21 01:48

We noticed that Google Drive API Javascript allows you to list all files from an specific folder, however it brings just basic details from the file. If we want

4条回答
  •  既然无缘
    2021-01-21 02:11

    I guess you used Children.list(). It only lists id of children which is not the function you want. You should rather use Files.list() with parameter q="'{{FOLDER_ID}}' in parents" and it will list all the files and its details of children of specific folder you want.

提交回复
热议问题