Hello,
I am implementing the Isolated Storage in my Windows Phone Application, by below code,
IsolatedStorageFile fileStorage = IsolatedStorageFile.GetUserStoreForApplication();
StreamWriter Writer = new StreamWriter(new IsolatedStorageFileStream("TestFile.txt", FileMode.OpenOrCreate, fileStorage));
In which we create the txt file to store data offline, right?
I have doubt that, When this code will run, somewhere in our Windows Phone Device the data will save, means this txt file save? I want to know the exact location path where the data will be saved in the Device memory, which is stored from app via Isolated Storage ?
What will be path exact location in device memory, where this Isolated Storage will save the data from app? And is End User can access this data which is store by isolated Storage in Windows Phone Device memory?
StreamWriter Writer = new StreamWriter(new IsolatedStorageFileStream("TestFile.txt", FileMode.OpenOrCreate, fileStorage));
In which we create the txt file to store data offline, right?
I have doubt that, When this code will run, somewhere in our Windows Phone Device the data will save, means this txt file save? I want to know the exact location path where the data will be saved in the Device memory, which is stored from app via Isolated Storage ?
What will be path exact location in device memory, where this Isolated Storage will save the data from app? And is End User can access this data which is store by isolated Storage in Windows Phone Device memory?

Jaganathan BantheswaranPosted Jul 15, 2014, 3:16 AM
Yes, Isolated Storage is Offline storage as it is in device memory.
You can find out the storage folder from \\Applications\\Data\\Your-Application-Id\\Data\\IsolatedStorage\\Your files here.
EX: new Uri("file://Applications/Data/Your-App-Id/Data/IsolatedStore/your-file.ext")
Note: You cant access the isolated storage of another app from your app.
For more info: http://msdn.microsoft.com/en-us/library/windowsphone/develop/system.io.isolatedstorage.isolatedstoragefile%28v=vs.105%29.aspx
Aditya PatilPosted Jul 15, 2014, 7:07 AM
Is there another way to store any secure data offline?
Jaganathan BantheswaranPosted Jul 15, 2014, 7:03 AM
Aditya PatilPosted Jul 15, 2014, 6:48 AM
End user can't access it by simply connecting Device to System, or using other SD card and Phone memory Viewer right? they need to install Windows Phone SDK this tool and all then only they can access.
Jaganathan BantheswaranPosted Jul 15, 2014, 6:33 AM
Aditya PatilPosted Jul 15, 2014, 6:12 AM
Only tell me, how End User not developer can access all the data stored using Isolated Storage?
Any way is there to access the Isolated Storage data?
You said storage folder from \\Applications\\Data\\Your-Application-Id\\Data\\IsolatedStorage\\Your files here, so can one can see these files where? and how?
Jaganathan BantheswaranPosted Jul 15, 2014, 6:09 AM
http://wptools.codeplex.com/
Aditya PatilPosted Jul 15, 2014, 4:45 AM
Eg. I saved the some personal message say passwords via isolated storage via app, so can other can access that txt file of password which I saved via isolated storage by connecting it to system or any other application like Files in WP8.1 and all?
Is that txt file remain secure? Is data security can be maintained?
And also anyhow, If user want to access that text file of password what are the ways he can access,
1. he can access it via the same app from where user saved it, there he can retrieve, but any other way he can see the content of txt file?
That's why I am asking the path of txt file which saved via Isolated Storage, where it saved in the memory?
Jaganathan BantheswaranPosted Jul 15, 2014, 4:37 AM
Do you mean that opening the txt file manually by navigating to that folder isolated folder from your PC?
Aditya PatilPosted Jul 15, 2014, 3:32 AM
Can he find this .txt file which get created by app, so that he can share this file with others?