Spliter is a command-line program. It works with only
1 file at a time. All it does is to do a clean splitting of files into
required components.
'Spliter huge.fil -m 0.2'
will split huge.fil into huge.0, huge.1, huge.2 etc. each
of 0.2 Mb each (note, the file extension is lost). Other options are available
by just typing 'spliter' at the command prompt.
To rejoin the files use this simple dos command
copy /b huge.0+huge.1+huge.2 huge.fil
OR
copy /b huge.?+huge.?? huge.fil
This command basically concatenates the files back into
huge.fil '/b' forces binary mode. PLEASE MAINTAIN the sequence of
joins.
The second command works ONLY if you had copied/downloaded
the splits in proper sequence. To be on the safer side use the first (elaborate)
copy command.
|