Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hey guys plz guide me to develop this desktop application which clears temporary files cookies and internet history
Posted
Comments
OriginalGriff 24-Feb-12 2:28am    
What have you tried?
Where are you stuck?
Sander Rossel 24-Feb-12 2:51am    
He tried asking here. That's where he got stuck :)
OriginalGriff 24-Feb-12 3:02am    
Regrettably, I think you may be right.
Sander Rossel 24-Feb-12 5:01am    
I have been known to be right once in a while. Most people also regret it when I am :laugh:

You can create a C# desktop application. Get Temporary Files, Cookies and Internet History folder using Environment.SpecialFolder. Get files from that directories and delete it one by one. Something like this:
C#
public void CleanComp()
{
    DirectoryInfo ICache = new DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache));
    foreach (FileInfo ICFiles in ICache.GetFiles())
        ICFiles.Delete();

    DirectoryInfo IHistory = new DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.History));
    foreach (FileInfo IHistoryFiles in IHistory.GetFiles())
        IHistoryFiles.Delete();

    DirectoryInfo ICookies = new DirectoryInfo(Environment.GetFolderPath(Environment.SpecialFolder.Cookies));
    foreach (FileInfo ICookiesFiles in ICookies.GetFiles())
        ICookiesFiles.Delete();
}
 
Share this answer
 
v2
Comments
johannesnestler 24-Feb-12 4:46am    
This should give OP an good idea how to start
Oshtri Deka 26-Feb-12 12:41pm    
This is it.
I hope OP won't be lazy and let us know what grade has Chandrakantt earned.
My 5.
Hello,
all about deleting the contents of folders on your computer you have at the address below:

MSDN Library on official MS site [Open link in new window]

All the best,
Perić Željko
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900