R – Silverlight: is there a way to allow a user to open a file from isolated storage

netsilverlightwebdav

I'd like to allow a user to open files in their own client applications via Silverlight. I'd like this to work similarly to WebDAV, in the sense that they could read/write the file back into Silverlight's isolated storage…

Is it possible to construct a file:// link to an isolated storage file?
Is there a uri scheme that is defined for silverlight in a browser that has the silverlight plugin?

Am I totally nuts?

Best Answer

Looks like you can do this and there is a tutorial on it here. The tutorial is just on how to use isolated storage, but the example is to open files on the user's system and store them in isolated storage. :)

Related Topic