Home All Groups Group Topic Archive Search About
Author
22 Oct 2006 1:28 PM
Dylan Copeland
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.

Author
22 Oct 2006 9:37 PM
ShaneO
Dylan Copeland wrote:
> 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.