标签: batch-file cmd
使用Windows cmd.exe
dir /b /od > list.txt
创建一个文件的最后一行是list.txt。如何避免字符串list.txt出现在文件list.txt中?
答案 0 :(得分:2)
dir /b /od |findstr /v /b /e "list.txt" >list.txt
也许有更好的方法,但这很简单。