Перед изменением Project с OS 7.0 на OS 7.1 работает приведенный ниже код.После обновления код не работает.Буду признателен за помощь, как сделать это изолированное хранилище работает.
</p>
<p>using (var store1 = IsolatedStorageFile.GetUserStoreForApplication())
{</p>
<p>if (store1.DirectoryExists("Contacts"))
{
strFileName = "Contacts\";</p>
string[] fileList = store1.GetFileNames(strFileName);
if (fileList.Length <= 0)
{
txtBlkMsg.Text = "No Contact file created. ";
listBox1.ItemsSource = null;
}
else
{
listBox1.ItemsSource = fileList;
}
}
else
{
txtBlkMsg.Text = "You have not created any contact file ";
}
}}