Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: SPLIT.EXE and MERGE.EXE (Read 11705 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

SPLIT.EXE and MERGE.EXE

This pair of tiny command line utils I compiled on an old DOS/Windows3.1 machine were intended to split large files into small portions for use with small capacity floppy disks or emails/usenet attachments etc. and to merge them at the other end. (It won't delete the original file)

You could install these in C:\Windows\system or somewhere else in your PATH.

Run either command from the commandline prompt (Start/Run/cmd.exe) for usage info.

If you have a problem file, for example an MP3 that may be corrupted and you wish to submit just the first 4 kB for analysis (to avoid copyright infringement), use the command:

Code: [Select]
split filename.mp3 4096 splitmp3


This will create a large number of files starting with splitmp3.000 then splitmp3.001 etc.

You could then use:
Code: [Select]
rename splitmp3.000 first4kB.mp3
del splitmp3.*

to keep the first file and delete the files you don't want. Then post first4kB.mp3 (which is the first part of your mp3) in the Uploads forum for the developers to analyse.
Dynamic – the artist formerly known as DickD