Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 0 down vote accepted

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.

share|improve this answer
i really want to get its absolute URI example "c:\<user>..." – xscape Mar 21 '10 at 10:37
If you really need the physical file path, that is possible with .NET reflection. Take a look at the answer to this question for the answer to yours :) social.msdn.microsoft.com/forums/en-US/clr/thread/… – Richard Mar 22 '10 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.