• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Free file merge/combine tool?

Goi

Diamond Member
Hi,

Are there any freeware/open source tools that can concatenate/combine files? I have a couple of files that I've downloaded in that have .001 to .00n extension and they need to be merged to form a larger file.
 
Uhh all you need is cmd.exe on Windows.

1. Open a CMD window (start->run, type cmd.exe, click ok).
2. Change to the directory where your split files are stored
3. Type copy /b file1+file2+file3 destinationfilename

You can use wildcards too but I'm not sure if I would trust it to get the order right. Check the copy command help if you need it.
 
Uhh all you need is cmd.exe on Windows.

1. Open a CMD window (start->run, type cmd.exe, click ok).
2. Change to the directory where your split files are stored
3. Type copy /b file1+file2+file3 destinationfilename

You can use wildcards too but I'm not sure if I would trust it to get the order right. Check the copy command help if you need it.

That only works for some files. Depends on what they used to split them. Things like video will sometimes not play because the headers get screwed up when combining with command or batch scripts.
 
Back
Top