Get Special Folder

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How would I get the defualt folder with all of the users cookies? I saw an
example a while back and it was a "special folder". Once I get the users
cookie folder path I need to delete all the cookies. Thanks.
 
Dylan said:
How would I get the defualt folder with all of the users cookies? I saw an
example a while back and it was a "special folder". Once I get the users
cookie folder path I need to delete all the cookies. Thanks.

Dim sString As String =
Environment.GetFolderPath(Environment.SpecialFolder.Cookies)

or type "Environment.SpecialFolder" in Help for full details.

ShaneO

There are 10 kinds of people - Those who understand Binary and those who
don't.
 
Back
Top