Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C++
Article

A Utility to Clean Up Compiler Temp Files

Rate me:
Please Sign up or sign in to vote.
4.92/5 (41 votes)
24 Dec 2002 358.3K   3.6K   97   94
A shell extension that deletes compiler temp and intermediate files.

 [DirClean menu items - 9K]

Recently at work, I was talking with a coworker about cool little utilities that we wished we had. He mentioned an idea for a shell extension that would remove all intermediate compiler files (such as *.obj) from a directory (and recurse subdirectories, naturally). That sounded pretty neat, and since he was in the middle of writing up a different cool program, I decided to get cracking on the clean-up utility and see what I could do.

I came up with this little app, DirClean. It's a shell extension that appears on the context menu of directories, and has a "Clean up temp files" command that will remove intermediate compiler files from the selected directory and its subdirectories. By default, the files are put in the Recycle Bin, but you can configure DirClean to just delete the files instead. DirClean uses the SHFileOperation function to delete files, so if there are a lot of files to delete, you'll see the familiar flying-paper progress dialog.

DirClean has both ANSI and Unicode versions. It was written with VC 6 SP 3, and tested on Win 98 and Win 2000.

The "DirClean options" menu item brings up the DirClean options dialog:

 [DirClean options - 9K]

The settings here should be self-explanatory. I don't do any checking of the wildcards you enter, so you probably don't want to enter "*.*" ;) The settings are saved in HKEY_CURRENT_USER, so each user has his own settings.

Note that you can override the "Send files to the Recycle Bin" setting by holding down the Shift key when clicking "Clean up temp files." Holding in Shift will immediately delete files if you have the option set to send files to the Recycle Bin, and vice versa.

Important note for VS.NET users

On the NT-based OSes, the way that the shell handles extensions of more than 3 characters will cause problems for C# projects. The default behavior of the shell makes the wildcard *.res match .RESX files (it only compares the first three characters), and deleting the .RESX files will delete some resource information.

So, to avoid deleting those files, you can either remove *.res from the list of files to delete, or go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem, and set the DWORD value Win95TruncatedExtensions to 0, then restart your computer. See KB article Q164351 for more info on this feature.

History

Oct 28, 2001 - Default list of wildcards updated.
Dec 25, 2002 - Added note about the Win95TruncatedExtensions registry entry.

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
Software Developer (Senior) VMware
United States United States
Michael lives in sunny Mountain View, California. He started programming with an Apple //e in 4th grade, graduated from UCLA with a math degree in 1994, and immediately landed a job as a QA engineer at Symantec, working on the Norton AntiVirus team. He pretty much taught himself Windows and MFC programming, and in 1999 he designed and coded a new interface for Norton AntiVirus 2000.
Mike has been a a developer at Napster and at his own lil' startup, Zabersoft, a development company he co-founded with offices in Los Angeles and Odense, Denmark. Mike is now a senior engineer at VMware.

He also enjoys his hobbies of playing pinball, bike riding, photography, and Domion on Friday nights (current favorite combo: Village + double Pirate Ship). He would get his own snooker table too if they weren't so darn big! He is also sad that he's forgotten the languages he's studied: French, Mandarin Chinese, and Japanese.

Mike was a VC MVP from 2005 to 2009.

Comments and Discussions

 
GeneralVisStudio.Net problem Pin
Number83-Jan-03 7:45
Number83-Jan-03 7:45 
GeneralRe: VisStudio.Net problem Pin
An Phung Nguyen9-Apr-07 22:27
An Phung Nguyen9-Apr-07 22:27 
GeneralThank you Pin
jirisoler2-Jan-03 22:04
jirisoler2-Jan-03 22:04 
GeneralSuggestion Pin
rrrado2-Jan-03 7:21
rrrado2-Jan-03 7:21 
Questioncleanex? Pin
bryce30-Dec-02 22:36
bryce30-Dec-02 22:36 
AnswerRe: cleanex? Pin
Blake Miller31-Dec-02 5:05
Blake Miller31-Dec-02 5:05 
GeneralRe: cleanex? Pin
bryce31-Dec-02 20:23
bryce31-Dec-02 20:23 
GeneralI always used Explorers Find Files Pin
Daniel Lohmann30-Dec-02 4:45
Daniel Lohmann30-Dec-02 4:45 
I usually search with Explorers "Find Files" for all files with the well known extensions (*.pdb;*.ilk;..., hit CTRL+A to select them all and then delete them.

However, on XP there is a major drawback: Explorers' search utility now searches ZIP archives. This not only does take a lot of time, explorer is also not able to perform a group command (select multiple files and then perform an action on them) if one of the files is from a ZIP archive. Dead | X|

Does anybody know how to disable searching of ZIP archives?

To come back to the utility:

I would like to see some features, that are a real improvement over the classic approaches. For example, I really do hate Explorers mole-mentality: If anything went wrong or it thinks it has to ask a stupid question ("This file is executable. Do you really want to delete it?") it just pauses or (even worse) breaks the operation. I would also like to see a kind of protocol after a large operation where some files could not be processed.




--

Daniel Lohmann

http://www.losoft.de
(Hey, this page is worth looking! You can find some free and handy NT tools there Big Grin | :-D )
GeneralRe: I always used Explorers Find Files Pin
min_zon30-Dec-02 15:13
min_zon30-Dec-02 15:13 
GeneralRe: I always used Explorers Find Files Pin
Daniel Lohmann31-Dec-02 4:18
Daniel Lohmann31-Dec-02 4:18 
GeneralPlease document Win95TruncatedExtensions Pin
Tom Welch18-Dec-02 5:07
Tom Welch18-Dec-02 5:07 
GeneralRe: Please document Win95TruncatedExtensions Pin
Michael Dunn20-Dec-02 6:04
sitebuilderMichael Dunn20-Dec-02 6:04 
GeneralRe: Please document Win95TruncatedExtensions Pin
Tom Welch20-Dec-02 9:33
Tom Welch20-Dec-02 9:33 
GeneralWhat's a f*! Pin
AirMax12-Dec-02 14:19
AirMax12-Dec-02 14:19 
GeneralRe: What's a f*! Pin
Rein Hillmann25-Dec-02 22:23
Rein Hillmann25-Dec-02 22:23 
GeneralAnother utility Pin
Bil Simser7-Dec-02 15:04
Bil Simser7-Dec-02 15:04 
GeneralProblems :( Pin
Selevercin9-Nov-02 12:09
Selevercin9-Nov-02 12:09 
GeneralRe: Problems :( Pin
Michael Dunn9-Nov-02 12:21
sitebuilderMichael Dunn9-Nov-02 12:21 
GeneralNice tool but... Pin
miliu8-Oct-02 4:34
miliu8-Oct-02 4:34 
Question*.res == *.resx ??? Pin
Odissey4-Oct-02 2:56
Odissey4-Oct-02 2:56 
AnswerRe: *.res == *.resx ??? Pin
Andreas Saurwein4-Oct-02 4:09
Andreas Saurwein4-Oct-02 4:09 
GeneralRe: *.res == *.resx ??? Pin
Anonymous24-Dec-02 1:45
Anonymous24-Dec-02 1:45 
GeneralRe: *.res == *.resx ??? Pin
Andreas Saurwein25-Dec-02 7:53
Andreas Saurwein25-Dec-02 7:53 
GeneralMy Project Dir Pin
Anonymous27-Jul-02 9:48
Anonymous27-Jul-02 9:48 
GeneralPlease add subfolders Pin
31-Oct-01 12:41
suss31-Oct-01 12:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.