I am trying to create a file in the Isolated storage using following code,
IsolatedStorageFile storageFile = IsolatedStorageFile.GetUserStoreForApplication();
storageFile.CreateFile("Html\\index.html");
but I am getting exception while doing the same.. which says.
System.IO.IsolatedStorage.IsolatedStorageException: Operation not permitted on IsolatedStorageFileStream
There are no operation performed apart from this operation.
Html
folder first? Also, are you sure theindex.html
file doesn't already exist? – Selenaselenate