I have a folder called AllPage. It has a number of png files. I m trying to retrieve the names of all the files from the folder using GetFilesAsync and apparently it retrieves nothing! :(
This is how I tried
IStorageFolder dataFolder = await local.CreateFolderAsync("AllPage", CreationCollisionOption.OpenIfExists);
EDIT
var obj = await dataFolder.GetFilesAsync();
var temp = obj[0];
var temp1 = obj[1];
return true;
obj gives me COM component. :( I'm so confused.