只想打印特定类型的文件

时间:2016-08-09 13:46:19

标签: batch-file command-line cmd command-prompt

在命令提示符中,我键入以下内容,它递归地将所有文件夹/子文件夹管道到.txt文件中,然后我可以在Excel中打开它:

dir /s folder > c:\filelist.txt

我有什么方法可以只打印.html.htm.doc.pdf个文件?

1 个答案:

答案 0 :(得分:0)

对于“打印所有类型”,请按以下方式使用:

dir /s /b *.html *.htm *.doc *.pdf >>c:\filelist.txt

仅用于pdf的打印方式:

dir /s /b *.pdf >>c:\filelist.txt