You mean folders likeI just use the StorageFolder class:
After that you should get the properties...Code:StorageFolder sf = await StorageFolder.GetFolderFromPathAsync("C:\\"); List<IStorageItem> lsf = new List<IStorageItem>(); var items = await sf.GetItemsAsync(); string test = ""; foreach (IStorageItem item in items) { lsf.Add(item); test = test + item.Name + "\n"; } MessageBox.Show(test);
That way you can also browse the C:\System32 folder as well, but there are still folders I can´t access. Maybe because I didn´t add all capatilities.
Edit:
@Sunius1, @GoodDayToDie:
Atm I don´t have time for doing more tests, so any help would be appreciated.
C:\windows \system 32\config
????
This folders needs a permission before you can access them
Test on emulator image . They ask you to confirm before you access these folders .
I think we don't need capabalities.


