Few days ago I was surprised that the method I'm using (ExternalStorageFolder.GetFilesAsync()) returns list of maximum 50 files as a result. I haven't found any info about this limitation, only method description:
Gets the top-level files in the current folder.
I've tried to find more information, but access to External Storage is very limited and I see no option to find the next files.
Normally I use the method like this:
var files = await currentFolder.GetFilesAsync();
I've registered App for a file association, I can see 50 files as a result, but I cannot access the next ones.
Is there any method to list more than 50 files?