Click here to Skip to main content
15,885,768 members
Articles / Web Development / HTML

WebCacheTool: Manipulate the IE Browser Cache From the Command-Line

Rate me:
Please Sign up or sign in to vote.
4.96/5 (17 votes)
23 Feb 20064 min read 63.3K   1.1K   32  
This article presents the WebCacheTool, a command-line utility to make it easier and faster to list, view, and delete files residing in the Internet Explorer browser cache.
////////////////////////////////////////////////////////////////////////////////////
// Command.cs
//
// By Scott McMaster (smcmaste@hotmail.com)
// 2/1/2006
//
// THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 
// EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 
// OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
////////////////////////////////////////////////////////////////////////////////////
using System;
using System.Collections;

namespace WebCacheTool
{
	/// <summary>
	/// Base class for all our commands.
	/// </summary>
	public abstract class Command
	{
		/// <summary>
		/// Display usage information for this command.
		/// </summary>
		public abstract string Usage
		{
			get;
		}

		/// <summary>
		/// Display help for this command.
		/// </summary>
		public abstract string HelpText
		{
			get;
		}

		/// <summary>
		/// Execute this command.
		/// </summary>
		public abstract void Execute(ICollection args);

		public Command()
		{
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I have over 10 years of full-lifecycle software development experience on a variety of large projects. I have a B.S. in Math from the University of Nebraska-Lincoln, a Masters in Software Engineering from Seattle University, and a Masters in Computer Science from the University of Maryland. I specialize in building and installing tools, frameworks, and processes that improve developer productivity and product quality. I am currently based in the Seattle area.

Comments and Discussions