iraychen / open-webkit-sharp

Automatically exported from code.google.com/p/open-webkit-sharp
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Clear cookies and temp files #116

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

What a programm method do you recomended to make clear all cookies and temp 
internet files?

Thanks

Original issue reported on code.google.com by prubo...@gmail.com on 6 Jun 2012 at 8:13

GoogleCodeExporter commented 8 years ago
Cookies path can be retrieved in the following way:
string path = 
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
            string cookiespath = path + @"\Apple Computer\Cookies\Cookies.binarycookies";

While the cache file is this:
C:\Users\User\AppData\Local\Apple Computer\Cache.db

Deleting these files is actually what you want to do

Original comment by tsumalis96@gmail.com on 28 Jun 2012 at 3:41