使用批处理文件删除文件夹中的pdf文件

时间:2012-05-30 18:14:54

标签: file batch-file command dos

我想运行一个批处理(包含DOS命令的.bat),它会通过删除任何仍然存在的pdf来清理我的文件夹。你是怎么做到的?

3 个答案:

答案 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)

http://ss64.com/nt/

使用/ q和DEL命令。