When I use the following code:
var appStorage = IsolatedStorageFile.GetUserStoreForApplication();
string[] listDirectories = appStorage.GetDirectoryNames();
I pull up a directory called "Shared", is there any easy way to ignore this directory, or will I have to define parameters in GetDirectoryNames()
?
And also, what is/can the Shared folder be used for?