开发者

Silverlight 4.0: IsolatedStorage URI

开发者 https://www.devze.com 2022-12-23 04:50 出处:网络
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.

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

精彩评论

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

关注公众号