| View previous topic :: View next topic |
| Author |
Message |
hakkairu Legendary
Reputation: 0
Joined: 02 Dec 2006 Posts: 1301
|
Posted: Sun Jul 15, 2007 10:37 pm Post subject: Making a cookie deleter |
|
|
Need some help making a cookie deleter.
_________________
|
|
| Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Sun Jul 15, 2007 10:43 pm Post subject: |
|
|
delete the folder the cookies are in and then clear recycle bin?
_________________
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sun Jul 15, 2007 10:45 pm Post subject: |
|
|
| Just have the program navigate to the folder and wipe it clean. Whats so hard about it?
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Mon Jul 16, 2007 1:59 am Post subject: |
|
|
| Delphi ?
|
|
| Back to top |
|
 |
AtheistCrusader Grandmaster Cheater
Reputation: 6
Joined: 23 Sep 2006 Posts: 681
|
Posted: Mon Jul 16, 2007 2:40 am Post subject: |
|
|
if it is in VB then
| Code: | | Kill ("C:/Cookies folder here/*.*") |
just tested and it works
i dunno about other languages
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Mon Jul 16, 2007 4:44 am Post subject: |
|
|
how do you make one in delphi ?
i would like to know too
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Mon Jul 16, 2007 5:34 am Post subject: |
|
|
| DeleteFile?
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Mon Jul 16, 2007 5:48 am Post subject: |
|
|
| but i have no idea how the source would look like? could someone give me an example ?
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Mon Jul 16, 2007 6:09 am Post subject: |
|
|
| Kevinnn wrote: | how do you make one in delphi ?
i would like to know too  |
Its fucking easy...
|
|
| Back to top |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Mon Jul 16, 2007 9:38 am Post subject: |
|
|
Use this to find the path. | Code: | #include <windows.h>
#include <shlobj.h>
int main(void)
{
char strCookiesPath[MAX_PATH];
SHGetFolderPath(NULL, CSIDL_COOKIES, NULL, SHGFP_TYPE_CURRENT,strCookiesPath);
MessageBox(NULL, strCookiesPath, "Path", MB_OK );
return 0;
} |
Then loop through the folder and delete everything except "index.dat"
_________________
|
|
| Back to top |
|
 |
hakkairu Legendary
Reputation: 0
Joined: 02 Dec 2006 Posts: 1301
|
Posted: Tue Jul 17, 2007 7:37 pm Post subject: |
|
|
| okie les do it in DELPHI. or C+
|
|
| Back to top |
|
 |
spedchyyz Master Cheater
Reputation: 0
Joined: 16 Jun 2007 Posts: 268 Location: what ?
|
Posted: Tue Jul 17, 2007 7:44 pm Post subject: |
|
|
where is the cookies folder i just wanna go delete it.. not make some thing that does it for me... wats the point of that
_________________
|
|
| Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Wed Jul 18, 2007 3:34 am Post subject: |
|
|
| spedchyyz wrote: | | where is the cookies folder i just wanna go delete it.. not make some thing that does it for me... wats the point of that |
to the people who dont know where to find it
lol, also just a simple click is a bit easier... but its not the big difrence.
Functions -> Settings For Internet (i dont know what its called in english, as my webbrowser aint english) -> Delete Files.
|
|
| Back to top |
|
 |
Reak I post too much
Reputation: 0
Joined: 15 May 2007 Posts: 3496
|
Posted: Wed Jul 18, 2007 4:38 am Post subject: |
|
|
mine written in delphi:
|
|
| Back to top |
|
 |
|