Posts by André Luiz • 31 points
3 posts
-
0
votes0
answers1139
viewsQ: Google Drive API - List files from a folder
With the following code, I am able to list all folders present in my Drive. function listFiles() { gapi.client.drive.files.list({ 'maxResults': 1000, 'q': "mimeType contains…
-
2
votes2
answers104
viewsA: Error in "break" in C++ code prevents compilation
Just put a ; after the break.
-
1
votes1
answer411
viewsQ: Google Drive API to search only images
I recently started to study the Google Drive API. I am able to list all the files in Drive and I have access to all its attributes. However, I was asked to search only for the image files. What did…