Silverlight 4.0:独立存储 URI

发布于 2024-08-25 23:01:44 字数 32 浏览 3 评论 0原文

有没有办法获取IsolatedStore的URI?

Is there a way to get the URI of you IsolatedStore?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

累赘 2024-09-01 23:01:44

如果您指的是文件系统中IsolatedStorage 的物理位置,我相信答案是否定的。

但是,您可以使用以下方法获取对应用程序的isolatedStorageFile的引用:

IsolatedStorageFile f = IsolatedStorageFile.GetUserStoreForApplication();

...然后您可以迭代该容器中的所有文件:

f.GetFileNames();

如果您可以提供有关您实际尝试的内容的更多信息为了实现这一目标,也许我们可以建议一个合适的解决方法?

希望这有帮助。

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:

IsolatedStorageFile f = IsolatedStorageFile.GetUserStoreForApplication();

... and then you can iterate through all of the files within that container:

f.GetFileNames();

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文