cmd删除文件命令有:1、删除空文件夹,命令如“rd /s/q "D:\Program Files\afish"”;2、删除文件,命令如“del /a/f/q "D:\Program Files\afish\123.txt"”。
本教程操作环境:windows7系统、Dell G3电脑。
推荐:《编程视频》
cmd命令删除文件夹或文件
删除空文件夹
rd /s/q "D:\Program Files\afish"
删除里面的文件
del /a/f/q "D:\Program Files\afish\123.txt"
注意:路径带空格,加引号
介绍几个命令:
dir 显示目录和文件
cd 进入目录
del 删除文件
rd 删除空目录(目录中不能有子目录和文件)
deltree 删除目录并同时删除目录中的子目录以及文件
例如:
c:\> c:\>cd "Program files" -这个地方一定要注意引号。dos命令不能有空格,如果有空格,请把字符用引号括起来! C:\Program Files>
现在你就可以删除afish文件了!
C:\Program Files>del afish回车就ok了!
还可以按下面的操作:
C:\Documents and Settings>del c:\"Program Files"\afish.txt
或
C:\Documents and Settings>del ..\"Program Files"\afish.txt
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!