I've been testing the list files API, but seeing unexpected results. Basically, I ask info on a path, process the results, and then ask for a "new" cursor via "listFolderGetLatestCursor" but it says there are no changes. Am I missing something?
// make request for path
ListFolderBuilder listFolderBuilder = client.files().listFolderBuilder(path);
//.... do work...
// get more results
result = client.files().listFolderContinue(result.getCursor());
// get new cursor
String cursor2 = client.files().listFolderGetLatestCursor(path).getCursor();
// store cursor
// modify files, do stuff...
// come back 1 day later
result = client.files().listFolderContinue(cursor2);
// report of nothing changed