I have seen posts describing DocumentFile.listFiles() takes a long time. In my case, it is fairly fast but operations on the retrieved instances of DocumentFile take a long time.
DocumentFile[] aFiles = dfDir.listFiles(); //Takes 100 ms with a list of 250 files
//The following takes 5,000ms
for (DocumentFile df : aFiles) {
boolean bFoo = df.isDirectory(); //takes about 10ms
String sName = df.getName(); //takes about 10ms
}
Could anyone shed some light on this?