Windows批处理-保存文件名列表,不包括列表文件本身

时间:2018-09-05 18:01:26

标签: batch-file cmd

使用Windows cmd.exe

dir /b /od > list.txt

创建一个文件的最后一行是list.txt。如何避免字符串list.txt出现在文件list.txt中?

1 个答案:

答案 0 :(得分:2)

dir /b /od |findstr /v /b /e "list.txt" >list.txt

也许有更好的方法,但这很简单。