我想运行一个批处理(包含DOS命令的.bat),它会通过删除任何仍然存在的pdf来清理我的文件夹。你是怎么做到的?
答案 0 :(得分:4)
del *.pdf /q
说明:
del -- Dos command to delete files
*.pdf -- all files with the .PDF extension in the current directory
/q -- Don't ask for confirmation.
答案 1 :(得分:2)
假设只有一个目录(没有子目录): del * .pdf
答案 2 :(得分:0)
使用/ q和DEL命令。