开发者

Silverlight 4.0: IsolatedStorage URI

Is there a way to get the URI of you Isolat开发者_如何学CedStore?


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜