Silverlight 4.0:独立存储 URI
有没有办法获取IsolatedStore的URI?
Is there a way to get the URI of you IsolatedStore?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法获取IsolatedStore的URI?
Is there a way to get the URI of you IsolatedStore?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您指的是文件系统中IsolatedStorage 的物理位置,我相信答案是否定的。
但是,您可以使用以下方法获取对应用程序的isolatedStorageFile的引用:
...然后您可以迭代该容器中的所有文件:
如果您可以提供有关您实际尝试的内容的更多信息为了实现这一目标,也许我们可以建议一个合适的解决方法?
希望这有帮助。
If you mean the physical location to the IsolatedStorage within the file system, I believe the answer is no.
You can, however, get a reference to the IsolatedStorageFile for your application using:
... and then you can iterate through all of the files within that container:
If you can give a little more information about what it is you're actually trying to achieve then perhaps we could suggest a suitable workaround?
Hope this helps.