Click here to Skip to main content
15,881,882 members
Articles / Operating Systems / DOS
Tip/Trick

Deleting subtrees in a DOSbox

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
10 Nov 2011CPOL1 min read 9.3K   2  
Using DOS' FOR command to delete subtrees
I prefer to work with a command line so I spend a large part of my day in a DOSbox (Windows Command Prompt). I also prefer to archive my code so I don't have to rely only on Subversion or a backup that may or may not occur.

Currently, I'm archiving to a CD; I copy the contents of my Projects directory. But I don't want to write the bin and obj trees to the CD. The rd (rmdir) command doesn't seem to have support for removing directories that are somewhere down under the current directory.

It turns out that DOS' FOR command can be used to do this. I had never used the FOR command before today. Basically, what is needed is to do a DIR /S /B bin. obj. to get a list of the directories I wish to delete, then have the FOR command pass each of them to the rd /s /q command -- simple...

Of course, it's little bit tricky, and I made it more complex... just because.

So, I wrote two BAT files, the first is intended as a general-purpose script for running a command on the output of a command -- PerformOn.bat:

for /F "usebackq" %%f in (`%~2`) do call %~1 %%f %~3


0) /F "usebackq" is needed to direct the FOR command to execute the command in the second parameter
1) The tildes (~) are used because the parameters are (or may be) wrapped in quotes (") -- the tilde removes the quotes (I had never heard of this before today)
2) Two percent signs are required for %%f because it's in a file

The other uses it to perform this particular function -- DelBin.bat:

call PerformOn.bat "rd /s /q" "dir /s /b bin. obj." "> nul"

License

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


Written By
Software Developer (Senior)
United States United States
BSCS 1992 Wentworth Institute of Technology

Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.

OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB, acknowledged pedant and contrarian

---------------

"I would be looking for better tekkies, too. Yours are broken." -- Paul Pedant

"Using fewer technologies is better than using more." -- Rico Mariani

"Good code is its own best documentation. As you’re about to add a comment, ask yourself, ‘How can I improve the code so that this comment isn’t needed?’" -- Steve McConnell

"Every time you write a comment, you should grimace and feel the failure of your ability of expression." -- Unknown

"If you need help knowing what to think, let me know and I'll tell you." -- Jeffrey Snover [MSFT]

"Typing is no substitute for thinking." -- R.W. Hamming

"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup

ZagNut’s Law: Arrogance is inversely proportional to ability.

"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon

"linq'ish" sounds like "inept" in German -- Andreas Gieriet

"Things would be different if I ran the zoo." -- Dr. Seuss

"Wrong is evil, and it must be defeated." –- Jeff Ello

"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw

“It’s always easier to do it the hard way.” -- Blackhart

“If Unix wasn’t so bad that you can’t give it away, Bill Gates would never have succeeded in selling Windows.” -- Blackhart

"Use vertical and horizontal whitespace generously. Generally, all binary operators except '.' and '->' should be separated from their operands by blanks."

"Omit needless local variables." -- Strunk... had he taught programming

Comments and Discussions

 
-- There are no messages in this forum --