Get Files in One Drive Folder Sorted By Updated Time
问题 I have an apps that allow user to pick an apps backups from specific folder in One Drive . I want to show only 10 files from this folder sorted by file Updated Time (DESC), I have found how to limit the files by appending limit=10 to query path. I'm using Live SDK ver 5.6.1 package from Nuget . LiveConnectClient client = new LiveConnectClient(session); var result = await client.GetAsync(string.Format("{0}/files?limit=10", folderId)); But cannot find how to sorted by Updated Time . 回答1: I'm