Accessing storage of simulator/device while debugging

你。 提交于 2019-11-28 11:39:47

On Local Machine, the data files are stored in the folder

%USERPROFILE%\AppData\Local\Packages\{Package family name}

which usually is C:\Users\{UserName}\AppData\Local\Packages\{Package family name}, where {UserName} corresponds to the Windows user name and {Package family name} corresponds to the Windows Store application package identifier which you can find as Package family name in Packaging tab of your app's manifest file.

And the LocalCache folder inside the package folder is the cache directory you've used to save image. You can view the saved image in it.

For Simulator, it's as same as Local Machine.

For Mobile Emulator and Device, we can use some tools like IsoStoreSpy or Windows Phone Power Tools to access Isolated Storage. Use these tools we can access LocalFolder, TemporaryFolder and RoamingFolder. However LocalCacheFolder is not supported.

Isolated Storage Explorer tool is used for Mobile Emulator and Device not for Local Machine and Simulator and by default it lists, copies, and replaces files and directories in your app’s local folder which is the LocalState folder in Local Machine. So you only get an empty ApplicationInsights folder when you use it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!