using System.IO.IsolatedStorage;
IsolatedStorageFile isoStore= IsolatedStorageFile.GetUserStoreForAssembly();
isoStore.CreateDirectory("Whatever");
System.IO.Stream fs = new IsolatedStoreageFileStream("Whatever.txt",
FileMode.Create, isoStore);
StreamWriter isoWriter = new StreamWriter(fs);
To get the files..
string[] isoFiles = isoStore.GetFileNames("FileFilter");
foreach(string isoFile in isoFiles){
//Whatever
}
--
W.G. Ryan, eMVP
http://forums.devbuzz.com/
http://www.knowdotnet.com/williamryan.html
http://www.msmvps.com/WilliamRyan/
Frazer said:
hi,
What is the advantage of storing data in the isolated storage.
Also how can i retrieve that data?
Thnx