Skip to content
Advertisement

Tag: google-drive-api

Return all files within a folder using Google Drive Java API

I’m able to retrieve all the files inside of my root folder using this code: However I would like to return only the files inside the “test” folder under root, but this fails: with this error: Any idea what I’m doing wrong? Answer You missed the quotes around test. And test cannot be the folder name, but the folder id.

Advertisement