Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从批处理文件将 file1 附加到 file2?文本文件,并且仅使用 Windows 上的“标准”文件。
这很简单
type file1 >> file2
您可能会通过以下方式获得更好的结果:
copy /b file1.txt+file2.txt result.txt
我使用这个命令将几十个 XML 文件组合在一起。“/b”将复制过程置于二进制模式。这消除了附加到我的目标文件末尾的控制字符。
COPY file1.txt+file2.txt result.txt