批处理 中的 RD函数

首页 / 批处理入门教程 / 批处理 中的 RD函数

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

RD - 语法

rd [directoryname]

RD - 示例

以下示例显示了 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

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

链接:https://www.learnfk.comhttps://www.learnfk.com/batch-script/batch-script-rd.html

来源:LearnFk无涯教程网

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

Service Mesh实践指南 -〔周晶〕

快速上手Kotlin开发 -〔张涛〕

用户体验设计实战课 -〔相辉〕

张汉东的Rust实战课 -〔张汉东〕

程序员的个人财富课 -〔王喆〕

手把手带你写一门编程语言 -〔宫文学〕

人人都用得上的数字化思维课 -〔付晓岩〕

快速上手C++数据结构与算法 -〔王健伟〕

B端产品经理入门课 -〔董小圣〕

好记忆不如烂笔头。留下您的足迹吧 :)