Rmdir#DOS
{{Short description|Directory management command on various operating systems}}
{{lowercase}}
{{Infobox software
| name = rmdir / rd
| logo =
| screenshot = Rmdir example.png
| screenshot size =
| caption = Example of rmdir
| author = Ken Thompson, Dennis Ritchie
(AT&T Bell Laboratories)
| developer = Various open-source and commercial developers
| released =
| latest release version =
| latest release date =
| operating system = Unix, Unix-like, DOS, MSX-DOS, FlexOS, OS/2, Windows, ReactOS, KolibriOS
| platform = Cross-platform
| genre = Command
| license =
| website =
}}
In computing, rmdir
(or rd
) is a command which will remove an empty directory on various operating systems.
Implementations
The command is available in Unix (e.g. macOS, Solaris, AIX, HP-UX), Unix-like (e.g. FreeBSD, Linux), DOS, Digital Research FlexOS,{{cite web |url=http://www.bitsavers.org/pdf/digitalResearch/flexos/1073-2003_FlexOS_Users_Guide_V1.3_Nov86.pdf |title=Manual |date=1986 |website=www.bitsavers.org |access-date=2020-09-12 |archive-date=2010-08-08 |archive-url=https://web.archive.org/web/20100808010315/http://www.bitsavers.org/pdf/digitalResearch/flexos/1073-2003_FlexOS_Users_Guide_V1.3_Nov86.pdf |url-status=dead }} IBM OS/2,{{cite web |url=http://www.jatomes.com/Help/Os2Cmd.php#RD |title=Help page |website=www.jatomes.com|access-date=2020-09-12}} Microsoft Windows{{Cite web|url=https://technet.microsoft.com/en-us/library/cc754993.aspx|title=Microsoft TechNet Rmdir article|date=31 August 2016 }} or ReactOS{{Cite web|url=https://github.com/reactos/reactos|title=reactos/reactos|website=GitHub|date=3 January 2022}} operating systems. On MS-DOS, the command is available in versions 2 and later.{{Cite book|author-last=Wolverton|author-first=Van|title=Running MS-DOS Version 6.22 (20th Anniversary Edition), 6th Revised edition|date=2003|publisher=Microsoft Press|isbn=0-7356-1812-7}} DR DOS 6.0 also includes an implementation of the {{code|rmdir}} command.[https://www.4corn.co.uk/archive/docs/DR%20DOS%206.0%20User%20Guide-opt.pdf DR DOS 6.0 User Guide Optimisation and Configuration Tips]
It is also available in the open source MS-DOS emulator DOSBox and in KolibriOS.{{Cite web|url=http://wiki.kolibrios.org/wiki/Shell|title=Shell - KolibriOS wiki|website=wiki.kolibrios.org}} The numerical computing environments MATLAB and GNU Octave include an rmdir
function with similar functionality.{{Cite web|url=https://www.mathworks.com/help/matlab/ref/rmdir.html|title=Remove folder - MATLAB rmdir|website=www.mathworks.com}}{{Cite web|url=https://octave.sourceforge.io/octave/function/rmdir.html|title=Function Reference: rmdir|website=octave.sourceforge.io}}
Usage
=Unix, Unix-like=
Normal usage is straightforward:
$ rmdir name_of_directory
where name_of_directory corresponds with the name of the directory one wishes to delete. There are options to this command such as -p in Unix which removes parent directories if they are also empty.
For example:
$ rmdir -p foo/bar/baz
will first remove baz/, then bar/ and finally foo/ thus removing the entire directory tree specified in the command argument.
rmdir will not remove a directory if it is not empty in UNIX. The rm (Unix) command will remove a directory and all its contents recursively. For example:
$ rm -r foo/bar/baz
$ rm -rf foo/bar/baz
=DOS, OS/2, Windows, ReactOS=
File:ReactOS-0.4.13 rmdir command 667x434.png rmdir
command]]
Normal usage is identical to Unix-like operating systems:
>rmdir name_of_directory
The equivalent command in MS-DOS and earlier (non-NT-based) versions of Microsoft Windows for deleting non-empty directories is deltree.
In later version of Windows:
>rd /s directory_name
Windows based on the NT kernel (XP, Vista, 7, 8, Server 2003/2008) are case insensitive, just like their earlier predecessors, unless two files of the same name and different case exist. Then case sensitivity applies when selecting which file to use, or if the case does not match either file, one may be chosen by Windows.
Having two files named the same with different case sensitivity is allowed either when Windows Services for Unix is installed or when the Windows Registry settings are set to allow it.
An example of the security risk is:
Using rd/rmdir and two directories with the same name and different case sensitivities exist, one of which contains valid data and/or programs, and the other contains incriminating materials and/or malware. If rd/rmdir gets executed without regard to case sensitivity and Windows chooses the legitimate folder to delete, the only folder left is the undesired one. Windows then uses this folder instead of the previously legitimate one to execute programs, and one may be led to believe it contains legitimate data.
See also
References
{{Reflist}}
Further reading
- {{Cite book|author-last=Cooper|author-first=Jim|title=Special Edition Using MS-DOS 6.22, Third Edition|date=2001|publisher=Que Publishing|isbn=978-0789725738}}
- {{Cite book|author1=Kathy Ivens|author2=Brian Proffit|year=1993|title=OS/2 Inside & Out|publisher=Osborne McGraw-Hill|isbn=978-0078818714}}
- {{Cite book|first=William R.|last=Stanek|year=2008|title=Windows Command-Line Administrator's Pocket Consultant, 2nd Edition|publisher=Microsoft Press|isbn=978-0735622623}}
- {{Cite book|author-last=McElhearn|author-first=Kirk|title=The Mac OS X Command Line: Unix Under the Hood|date=2006|publisher=John Wiley & Sons|isbn=978-0470113851}}
External links
{{Wikibooks|Guide to Windows Commands}}
{{Wikibooks|Guide to Unix|Commands}}
- {{man|cu|rmdir|SUS}}
- [https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/rmdir rmdir | Microsoft Docs]
{{Unix commands}}
{{Core Utilities commands}}
{{Windows commands}}
Category:Unix SUS2008 utilities
Category:Unix file system-related software
Category:Internal DOS commands