Nghia Nguyen
Nghia Nguyen

Reputation: 2665

Virtual emulator IsolateStorage in wp7

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?

Upvotes: 0

Views: 235

Answers (2)

babaandthepigman
babaandthepigman

Reputation: 371

This might be worth checking out also Windows Phone 7 Isolated Storage Explorer as it has a desktop client and also integrates into visual studio.

Upvotes: 2

Dave Bost - MSFT
Dave Bost - MSFT

Reputation: 517

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.

Upvotes: 3

Related Questions