假设我在IsolatedStorage中创建了许多目录。我想枚举并在listBox中显示它们,以便我可以选择。示例:
Restuarants 酒店 购物中心 ....
我想解决的问题:
ListBox将包含这些。如果我单击Restuarant,它将获得存储在此目录中的所有文件。
由于
答案 0 :(得分:2)
您可以使用IsolatedStorageFile.GetDirectoryNames()枚举目录。
private string[] GetLocationTypes()
{
using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
return store.GetDirectoryNames();
}
}