
rmdir
List of commands for rmdir:
-
rmdir:tldr:2dd40 rmdir: Remove a directory and its contents recursively.$ rmdir ${path\to\directory} /stry on your machineexplain this command
-
rmdir:tldr:3bcd3 rmdir: Remove specific directories.$ rmdir ${path-to-directory1 path-to-directory2 ---}try on your machineexplain this command
-
rmdir:tldr:69c26 rmdir: Remove specific nested directories recursively.$ rmdir -p ${path-to-directory1 path-to-directory2 ---}try on your machineexplain this command
-
rmdir:tldr:a6b75 rmdir: Remove specific nested directories recursively.$ rmdir --parents ${path-to-directory1 path-to-directory2 ---}try on your machineexplain this command
-
rmdir:tldr:f2d58 rmdir: Remove a directory and its contents recursively without prompting.$ rmdir ${path\to\directory} /s /qtry on your machineexplain this command