批处理脚本 - DEL 命令

此批处理命令删除文件而不是目录。

语法

del [filename]

示例

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

@echo off 
Rem Deletes the file lists.txt in C:\ 
del C:\lists.txt 
Rem Deletes all files recursively in all nested directories
del /s *.txt 
Rem Deletes all files recursively in all nested directories , but asks for the 
confirmation from the user first 
Del /p /s *.txt

输出

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

❮ batch_script_commands.html