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
Using googleApis V3 you can do it. This is sample code:
string FolderId = "1lh-YnjfDFMuPVisoM-5p8rPeKkihtw9";
// Define parameters of request.
FilesResource.ListRequest listRequest = DriveService.Files.List();
listRequest.PageSize = 10;
listRequest.Q = "'" + FolderId + "' in parents and trashed=false";
listRequest.Fields = "nextPageToken, files(*)";
// List files.
IList files = listRequest.Execute()
.Files;
Hope this help.