WP7——在我的计算机上查找isolatedStorage文件
我正在尝试使用 C# 类isolatedStorageFile 将一些数据写入我的应用程序中的文件。这是使用模拟器。我想在我的计算机上查看它是否有效(即查看记事本中的文件)。我在哪里可以找到该文件?
I am trying to use the C# class IsolatedStorageFile to write some data to a file in my app. This is using the simulator. I would like to look on my computer to see if it worked (i.e., look at the file in notepad). Where can I find that file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
隔离存储存储在模拟器(虚拟机)中,而不是直接存储在硬盘上。您必须编写自己的文件查看器代码(例如,在您的应用程序中,从独立存储加载文件并使用 StreamReader 显示文本)。
我依稀记得 Mango 工具包(五月发布)在模拟器中内置了一个isolatedStorage 查看器,但我不确定它有什么功能。
您可能对这篇博文感兴趣< /a>.它解释了如何将文件导出到桌面。
The Isolated Storage is stored in the emulator, which is a virtual machine, and not directly on your harddrive. You'll have to code your own file viewer (e.g. from within your app, load the file from Isolated Storage and display the text using StreamReader).
I vaguely remember that the Mango toolkit (out in May) features an IsolatedStorage viewer built into the emulator, but I'm not sure what features it has.
You might be interested in this blog post. It explains how to export your file to your desktop.
您可以下载 IsolatedStorageExplorer 并使用它将文件从IsolatedStorage 下载到计算机。
查看这篇文章和给出的答案马特·莱西
You can download IsolatedStorageExplorer And use it to download file from IsolatedStorage to Computer.
Check out this Post and Answer given by Matt Lacey