Scrapping a project entirely is probably never a good idea. To quote Joel Spolsky:
Netscape 6.0 is finally going into its
first public beta. There never was a
version 5.0. The last major release,
version 4.0, was released almost three
years ago. Three years is an awfully
long time in the Internet world.
During this time, Netscape sat by,
helplessly, as their market share
plummeted.
It's a bit smarmy of me to criticize
them for waiting so long between
releases. They didn't do it on
purpose, now, did they?
Well, yes. They did. They did it by
making the single worst strategic
mistake that any software company
can make:
They decided to rewrite the code from
scratch.
Generally, a better idea is to take portions of the code base (discrete parts) and refactor them in place.
I originally answered this question before being a part of a lot of projects where this has happened. Now that I have a bit more experience under my belt, I can say unequivocally: Don't rewrite software.
Short term benefits of rewriting software include:
- Greenfield codebase (SHINY)
- no weird names (
GaidenCommand, anyone? (note: I worked on that project)
- methods aren't longer than the screen... Usually.
Long term problems with rewriting software:
- Re-fixing bugs you already fixed
- introducing new bugs
- having to maintain two separate versions of the software (or in some cases, 4 different versions, if you've rewritten the same codebase three times, but never bothered to port it to the old project)
- Longer time to market (this is what Joel brings up in his essay -- and even though it's usually the last thing programmers think about, it should be the first thing. After all, Shipping is the first step to making money)
All in all, it may seem like a good idea at the moment, especially when you're pulling your hair out trying to figure out what the CommandManagerCommander does (same project I referenced above), but it never turns out well.
Instead of rewriting, spend some money in good refactoring tools (JetBrains ReSharper is amazing), and when you're making your next improvement to the software, try to leave it better than you found it.