摘自:网络
-------

 

txt 合并命令

 

for %f in (*.txt) do type %f>>c:\temp.txt

c:>dir   *.txt/s   >temp.txt

type *.txt>>temp.txt

 

-------
摘自:网络