Isolated Stoarage

G

Guest

Hi EeveyBody:

I creat Directory by using Isolated storage method and this what I did:

Dim isoFile As System.IO.IsolatedStorage.IsolatedStorageFile =
System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(IsolatedStorage.IsolatedStorageScope.User
Or IsolatedStorage.IsolatedStorageScope.Assembly Or
IsolatedStorage.IsolatedStorageScope.Domain,
GetType(System.Security.Policy.Url), GetType(System.Security.Policy.Url))

isoFile.CreateDirectory("Husam")

And I have this quetions about it:

how can I add or save text file to this Directory ?

any help will be appreciated

regard's

Husam
 
H

Herfried K. Wagner [MVP]

Husam said:
[IsolatedStorage directory]
how can I add or save text file to this Directory ?

Take a look at the 'IsolatedStorageFileStream' class.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top