Am trying to retrieve the sub folders, files of a folder.
Current code I use is:
var items = await adminClient.FoldersManager.GetFolderItemsAsync("0", 10); // "0", 500 = root (original settings) "191933278438"
items.Entries.ForEach(i =>
{
MessageBox.Show("\t{0}", i.Name);
});
If I leave the line as "0", 10 the code moves to the next line items.Entries.... but the program says there are no items (though if I look in Box there are. If I set it to the actual folder number that I want to return the contents of "191933278438" the program I assume errors and doesn't go to the next line.
I have double checked the folder number, it is correct, what else do I need to check?
regards,
Matt
