I have two Windows Forms applications and library in one solution.
Library class can create new folders and files in IsolatedStorage and list all files and folders in IsolatedStorage.
First application uses library class to create new folders/files
I want the second one to list folders created by first app.
How can i make them use the same isolated storage?
Use
IsolatedStorageFile.GetUserStoreForAssemblyto create isolated storage from the library.Details here
You could use the below type in your library. And the application1 and application2 can write/read to/from the same isolated storage via the below type in your library.
Below:
EDIT:
The dll should be a strongly named assembly. Below snapshots show how to add a strong name to the assembly.
