rmdir code example

Example 1: remove directory in cmd

# for removing empty directory
$ rmdir myDirectory

# to remove a directory that contains files and subdirectory
$ rm -r myDirectory

Example 2: rmdir command

#usage:
rmdir <dir>
#it removes <dir>
#but if it isnt empty it will not work
#so do:
rmdir /S <dir>
#--ignore-fail-on-non-empty for linux
#to remove confirmation
rmdir /Q <dir>
#it is abbreviated to rd in cmd(windows) like all commands:)
rmdir /? #for help
#the last two are windows specific

Example 3: rmdir linux

rmdir <filePath>

Example 4: cmd remove directory not empty windows

rmdir /S directory_to_be_deleted