I use IsolatedStorage for persistent objects, but from time to time I need to manually clean files from this directory. When I save the files, I want to write the physical location of the directory on the console. There seems to be no property available that returns this information. How should I do it?
Here is my incomplete code:
using (var store = IsolatedStorageFile.GetMachineStoreForAssembly())
{
Console.WriteLine("Persisting Hotel to {0}", store.<<INSERT APPROPRIATE PROPERTY>>);
}
source
share