I have a file in my IsolatedStorage
. I need to open the file from my application. I tried to open it in WebBrowser like this
private void OpenFile(string url)
{
WebBrowserTask task = new WebBrowserTask();
task.Uri = new Uri(url);
task.Show();
}
but it throws an exception. The error message is Invalid URI: The format of the URI could not be determined.
How can I open the file in my application?