RD – Windows CMD Command


Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 118

Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 119

Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 118

Notice: A non well formed numeric value encountered in /home/future4tech/public_html/wp-content/plugins/crayon-syntax-highlighter/crayon_formatter.class.php on line 119

Remove (or Delete) a Directory.

Place any long pathnames in double quotes.

Without the /S option, RD will only delete an empty directory and RD /Q will silently fail to delete any directories that are not empty.
If the pathname is a Junction Point, then RD without /S will remove the Junction point itself, not the Junction’s destination directory.

RD does not support wildcards but you can remove multiple directories in one command:

RD C:\docs\Jan “C:\My Documents\Mar”

Exit code / Errorlevel

In normal use RD will fail to return an ERRORLEVEL to the shell, irrespective if the command succeeds or fails the ERRORLEVEL will be left unchanged.

It will however set an Exit Code

Directory deleted successfully = 0
Invalid option = 1
Directory not found = 2
Access denied = 5
Directory in use = 32
Directory not empty = 145

A workaround to detect a non zero Exit Code from RD is to use conditional execution to run a command if the RD fails, the second command can be anything, but typically will be an Echo, Goto or CALL statement:

RD NonExistentFolder || Echo This failed!

If you delete directories using PowerShell then a True/False return code ($?) will be set correctly.

RMDIR is a synonym for RD

RD is an internal command.

You may also like...

6 Responses

  1. zoritoler imol says:

    Thank you for every other informative web site. Where else could I get that type of info written in such an ideal method? I’ve a undertaking that I’m just now working on, and I’ve been at the look out for such info.

  2. zoritoler imol says:

    You are a very intelligent individual!

  3. Marty says:

    Aw, this was a really nice post. Taking the time and actual effort to create a superb article… but what can I say… I hesitate a whole lot and never seem to get
    anything done.

  4. Leonore says:

    Thanks for your marvelous posting! I certainly enjoyed reading
    it, you’re a great author. I will make certain to bookmark
    your blog and will come back at some point. I want to encourage yourself to continue your great job, have a nice weekend!

  5. zortilonrel says:

    Regards for helping out, wonderful info. “The laws of probability, so true in general, so fallacious in particular.” by Edward Gibbon.

  6. froleprotrem says:

    I know this if off topic but I’m looking into starting my own blog and was wondering what all is required to get set up? I’m assuming having a blog like yours would cost a pretty penny? I’m not very web savvy so I’m not 100 positive. Any suggestions or advice would be greatly appreciated. Kudos

Leave a Reply

Your email address will not be published. Required fields are marked *