What's File Splitter and Merger Tool?
It's an command line utility to truncate a big file into small pieces, later to be assembled.
Useful for sending big attachment files in mails, copying a big file into floppies etc.
Useful for sending big attachment files in mails, copying a big file into floppies etc.
How does it work?
During Disassemble, input for the source file, destination folder and truncation size are accepted. Later the file is split into multiple files with the name filrname.nn where n is the file number in the destination folder. e.g., Test.data.00, Test.data.01 etc
During Assemble, input for the destination file that will be assembled, source folder that contains truncated files are accepted. Later the destination file that will be assembled back from the multiple truncated files from source folder .
How to use it?
let's say if we want to break a big file d:\data\data.mdb of 10MB into eleven(11) 950K files:
open a Command window and type the command below.
let's say if we want to break a big file d:\data\data.mdb of 10MB into eleven(11) 950K files:
open a Command window and type the command below.
FileSplitterMerger D d:\data\data.mdb 950000
you can see that 11 files d:\data\data.mdb.00 ..... d:\data\data.mdb.10 are created.
To assemble back, open a Command window and type
FileSplitterMerger A d:\data\data.mdb
you can see the d:\data\data.mdb created after the merge
Source and Binaries can be found here.