Home > Common Problem > body text

What is the cmd command to delete files?

藏色散人
Release: 2021-01-26 09:14:12
Original
31792 people have browsed it

cmd删除文件命令有:1、删除空文件夹,命令如“rd /s/q "D:\Program Files\afish"”;2、删除文件,命令如“del /a/f/q "D:\Program Files\afish\123.txt"”。

What is the cmd command to delete files?

本教程操作环境:windows7系统、Dell G3电脑。

推荐:《编程视频

cmd命令删除文件夹或文件

删除空文件夹

rd /s/q "D:\Program Files\afish"
Copy after login

删除里面的文件

del /a/f/q "D:\Program Files\afish\123.txt"
Copy after login

注意:路径带空格,加引号

介绍几个命令:

dir 显示目录和文件

cd 进入目录

del 删除文件

rd 删除空目录(目录中不能有子目录和文件)

deltree 删除目录并同时删除目录中的子目录以及文件

例如:

c:\>
c:\>cd "Program files" -这个地方一定要注意引号。dos命令不能有空格,如果有空格,请把字符用引号括起来!
C:\Program Files>
Copy after login

现在你就可以删除afish文件了!

C:\Program Files>del afish回车就ok了!

还可以按下面的操作:

C:\Documents and Settings>del c:\"Program Files"\afish.txt
Copy after login

C:\Documents and Settings>del ..\"Program Files"\afish.txt
Copy after login

The above is the detailed content of What is the cmd command to delete files?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
cmd
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template