CHOP breaks big files into smaller ones.  Freeware.

Usage:

    CHOP pathname filesize_in_KB

    
"pathname" is the path and file name of what you want to chop into
smaller files.  The output file wil have the same first 8 characters
of the "pathname", but the extension will be numbered consecutively
from 1.  CHOP will not be modified.

"filesize_in_KB" is the size in KB you want each of the smaller files
to be.  CHOP will begin chopping the file from the beginning of the
file and work its way to the end.

For example: If BIGFILE.DAT is 4KB in size and you want to break it
into smaller files that are 2KB each, use this syntax:

   CHOP BIGFILE.DAT 2
   
This will create two smaller files:

   BIGFILE.01
   BIGFILE.02
   
They will be 2 KB each. 

 
