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 で「標準」のもののみを使用します。
次の方法を使用すると、より良い結果が得られる場合があります。
copy /b file1.txt+file2.txt result.txt
このコマンドを使用して、多数の XML ファイルを結合します。「/b」は、コピー プロセスをバイナリ モードにします。これにより、宛先ファイルの末尾に追加されていた制御文字が削除されました。
COPY file1.txt+file2.txt result.txt