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.
是否有一种工具可以合并来自具有相同数据结构的多个 xml 的数据。
例如:覆盖数据?
我可以用一个简单的 bat 文件来做到这一点
@Echo On TITLE APPEND FILES ECHO ^<root^> > C:\AppendedFile.xml for %%f in (C:\works\file*.xml) do ( type "%%f" >> C:\AppendedFile.xml ) ECHO ^</root^> >> C:\AppendedFile.xml pause