Join split files in Windows


We often encounter situation when we need to join multiple split parts of a file into a whole file. Say, we have 3 split parts of a file myfile.ext and the splits are myfile.ext.001, myfile.ext.002 & myfile.ext.003.
Following command in the cmd will join all of them into one:

copy /b myfile.ext.001+myfile.ext.002+myfile.ext.003 myfile.ext

Hope it was kind of helpful, if so keep coming & if not then at least don’t forget to put a comment 😀

6 thoughts on “Join split files in Windows

  1. Thank you for the tip! I was able to successfully re-join a VirtualBox image (on Windows) that had been split using the ‘split’ command on MacOS X.

    Liked by 1 person

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.