如何枚举在IsolatedStorage for Windows phone中创建的目录

时间:2011-06-01 06:14:03

标签: windows-phone-7 isolatedstorage

假设我在IsolatedStorage中创建了许多目录。我想枚举并在listBox中显示它们,以便我可以选择。示例:

目录

Restuarants 酒店 购物中心 ....

我想解决的问题:

ListBox将包含这些。如果我单击Restuarant,它将获得存储在此目录中的所有文件。

由于

1 个答案:

答案 0 :(得分:2)

您可以使用IsolatedStorageFile.GetDirectoryNames()枚举目录。

private string[] GetLocationTypes()
{
    using (var store = IsolatedStorageFile.GetUserStoreForApplication())
    {
        return store.GetDirectoryNames();
    }

}