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
I did much googled for this question but the answer is right here. You have to use following code snippet as i had used:
Files.List request = mService.files().list().setQ("'Your Folder ID Here' in parents");
FileList files = request.execute();
if (files != null) {
for (File file : files.getItems()) {
// Meta data
Log.i("", "Title: " + file.getTitle());
Log.i("", "Description: " + file.getDescription());
Log.i("", "MIME type: " + file.getMimeType());
}
}
I am sure it will work for you.