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からのデータをマージするツールはありますか?
例:カバレッジデータ?
私は簡単なバットファイルでこれを行うことができました
@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