I want to list name here i save in isolated storage my code is :
public async void getfile()
{
string _storageFile = "books.db";
using (var isolatedStorage = IsolatedStorageFile.GetUserStoreForApplication())
{
if (!isolatedStorage.FileExists(_storageFile))
{
}
else
{
using (var isoFileStream = isolatedStorage.OpenFile(_storageFile, FileMode.Open))
{
}
}
}
}
How to get the list of all files?