📌  相关文章
📜  使用 cmd 删除文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:52.233000             🧑  作者: Mango

代码示例2
Note** The deleted file will not be store in the recycle bin
del /Q *filename.extension*  --This will delete only specific file in a current dir

del /Q *.txt*  --This will delete all file with .txt 

del /Q *.*  --This will delete all file, except folder