Order of results in the Google Drive SDK

Can I order a list of files using Api Google Drive (by name, type or latest update)? Obviously, this cannot be done on the client side, since we should not receive the entire list in one bit, but we cannot understand how to order it on the server side. Thank you for your help.

+7
source share
1 answer

There are no query parameters that would allow the client to request a sorted list of files from the Google Drive API. This is a valid function request that we could consider.

In the meantime, client applications have no choice but to sort on their side.

0
source

All Articles