What's the best way to setup a collection view emulating the file/folder structure the user has on their account? I know if I use the recursive method it'll take ages before it fully finishes depending on the user, which is absolutely understandable. So I guess I'm just curious what the best way of calling and retrieving the data would be? I believe I'd be calling:
listFolder(path: String, recursive: = true, includeMediaInfo = true)
and once a response returns pass in the folder's cursor and call:
listFolderContinue(cursor: String)
Is this the direction I should be headed? Any help is greatly appreciated.