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 … Continue reading Join split files in Windows