批处理脚本 - RD 命令

此批处理命令会删除目录,但目录必须为空才能删除。

语法

rd [directoryname]

示例

以下示例显示了 rd 命令的不同变体。

@echo off
Rem removes the directory called newdir
rd C:\newdir

Rem removes 2 directories
rd Dir1 Dir2

Rem Removes directory with spaces
rd "Application A"

Rem Removes the directory Dir1 including all the files and subdirectories in it rd /s Dir1
Rem Removes the directory Dir1 including all the files and subdirectories in it but
asks for a user confirmation first.
rd /q /s Dir1

输出

所有操作均按照批处理文件中的备注执行。

❮ batch_script_commands.html