I\'ve recently discovered the IsolatedStorage
facilities in .net, and I\'m wondering when I should use them for my application data versus when I should use (e.
IsolatedStorage has a couple interesting features that might make you opt for it:
Even very low trusted applications (such as click-once) can access isolated storage. Not all applications can have access to AppData. Depending on the security policy imposed on the application, IsolatedStorage can also be limited, but it usually is more accessible than AppData/file system.
IsolatedStorage storage requirements can be controlled by administrator policy.
You don't have to know where or how isolated storage data is stored. It has a uniform API for accessing it on all systems you can completely ignore the underlying path that it is stored in. As you noted, this is very useful for a library which may have no idea how the hosting application stores data.
You can also have data stored data in isolated storage with vary levels of isolation very easily. See the IsolatedStorageScope values for more information. This is its namesake, so I guess I should have listed this point first :)
On the downside:
Some useful links: