For debugging purpose, I would like to check what file has been saved while executing and I want to read that file.
For example I use this code:
IsolatedStorageFileStream stream1 = new IsolatedStorageFileStream("SomeTextFile.txt", FileMode.Create, myIsolatedStorage);
How can I check out or access that SomeTextFile.txt
from my PC? Or access to that file somehow?
In the new Windows Phone 7.1 SDK tools, there is an Isolated Storage explorer tool that will allow you to peer into (and modify) your application's Isolated Storage. More info can be found on MSDN.